Skip to content

Exploring Materials Synthesis with MP Data and Reaction Networks

Author: Matthew McDermott
Last updated: 08/05/21

Goal

Learn how to build & interpret phase diagrams using MP data and apply these to predict reaction pathways in inorganic materials synthesis.

Outline

  1. Identifying a target system
  2. Building phase diagrams
  3. Predicting interface reactions between solids
  4. Enumerating all possible reactions to a specific target phase
  5. Constructing a reaction network from enumerated reactions
  6. Finding and balancing reaction pathways

1. Identifying a target system

Scenario:

While researching ferroelectric materials, you stumble upon a compound that has shown much promise as a multiferroic material: yttrium manganese oxide, YMnO\(_3\). When you consult the literature, it looks like there are many different approaches for making this material: solid-state synthesis, chimie douce methods, microwave-assisted synthesis, pulsed laser deposition, hydrothermal synthesis, etc.

In almost all of the papers you find, however, the authors describe significant difficulty in synthesizing phase-pure YMnO\(_3\). For example: - "... observation that crystallization at low temperature or high oxygen partial pressures gives a mixture of Y2Mn2O7 together with YMnO3" Brinks et al., Journal of Solid State Chemistry 129, 334-340 (1997). - "The solid state synthesis of YMnO3 requires very long procedure with repeated heating and grinding" Z. Brankovic et al. Ceramics International 41 (2015) - "There are still challenges to be addressed with respect to hydrothermal synthesis of h-YMnO3, most notably the difficulty in synthesising phase pure h-YMnO3. This is a result of the complexity of the system, with a total of eight crystalline phases having been detected throughout the course of the reaction." Marshall et al., Chem Eur. J 2020, 26, 9330-9337 (2020).

Being familiar with the Materials Project database and pymatgen, you decide to check the database to see if it can help answer the question: why is phase-pure YMnO\(_3\) so difficult to synthesize?

We previously learned how to use the MPRester to access computed data on the Materials Project. Let's start by importing MPRester:

from mp_api.matproj import MPRester

1.1 EXERCISE: Acquiring entries from MP

Using the MPRester, acquire all entries from the Materials Project with the composition YMnO\(_3\) in the cell below:

with MPRester() as mpr:
    entries = mpr.get_entries(chemsys_formula="YMnO3")
/usr/share/miniconda/envs/workshop/lib/python3.9/site-packages/maggma/api/utils.py:104: RuntimeWarning: fields may not start with an underscore, ignoring "_framework_formula"
  for model in get_flat_models_from_model(pydantic_model)
/usr/share/miniconda/envs/workshop/lib/python3.9/site-packages/maggma/api/utils.py:104: RuntimeWarning: fields may not start with an underscore, ignoring "_stable_entries"
  for model in get_flat_models_from_model(pydantic_model)
/usr/share/miniconda/envs/workshop/lib/python3.9/site-packages/maggma/api/utils.py:104: RuntimeWarning: fields may not start with an underscore, ignoring "_unstable_entries"
  for model in get_flat_models_from_model(pydantic_model)

1.2 Exploring downloaded entries

Now let's take a look at one of the downloaded entry objects.

In the ComputedStructureEntry printout, we can see the uncorrected energy, correction, final energy, and the various parameters/data associated with the calculation.

Since this is hard to interpret, it will be easier for us to reformat the entries into a pandas DataFrame with the relevant information. First we import pandas:

import pandas

And then we create a function to help us wrangle the entries into the DataFrame format:

def get_df_from_entries(entries):
    formulas = [e.composition.reduced_formula for e in entries]
    energies = [e.energy_per_atom for e in entries]
    spacegroups = [e.structure.get_space_group_info()[0] for e in entries]
    structures = [e.structure for e in entries]

    data = {"formula": formulas, "energy": energies, "spacegroup": spacegroups, "entry":entries}

    df = pandas.DataFrame(data).sort_values("energy")

    return df

The dataframe can now be easily created by calling this function:

df = get_df_from_entries(entries)
df
formula energy spacegroup entry
4 YMnO3 -9.130481 P6_3cm mp-19385 ComputedStructureEntry - Y6 Mn6 O18 ...
0 YMnO3 -9.109891 P6_3/mmc mp-19227 ComputedStructureEntry - Y2 Mn2 O6 ...
3 YMnO3 -9.107394 Pnma mp-20699 ComputedStructureEntry - Y4 Mn4 O12 ...
1 YMnO3 -8.805429 Pm-3m mp-1434307 ComputedStructureEntry - Y1 Mn1 O3 ...
2 YMnO3 -8.731478 Pnma mp-20699 ComputedStructureEntry - Y4 Mn4 O12 ...

We see that there are several polymorphs of similar energy. The lowest energy polymorph is the hexagonal YMnO\(_3\) phase which is well known as the thermodynamically stable phase in the literature:

structure = df.iloc[0]["entry"].structure
print(structure)
Full Formula (Y6 Mn6 O18)
Reduced Formula: YMnO3
abc   :   6.233022   6.233022  11.589090
angles:  90.000000  90.000000 119.999996
Sites (30)
  #  SP           a         b         c    magmom
---  ----  --------  --------  --------  --------
  0  Y     0.666667  0.333333  0.233045     0.019
  1  Y     0.333333  0.666667  0.733045     0.019
  2  Y     0.666667  0.333333  0.733045     0.019
  3  Y     0.333333  0.666667  0.233045     0.019
  4  Y     0         0         0.775978     0.016
  5  Y     0         0         0.275978     0.016
  6  Mn    0.666399  0         0.501375     3.939
  7  Mn    0.666399  0.666399  0.001375     3.931
  8  Mn    0         0.333601  0.001375     3.931
  9  Mn    0         0.666399  0.501375     3.939
 10  Mn    0.333601  0.333601  0.501375     3.939
 11  Mn    0.333601  0         0.001375     3.931
 12  O     0.666667  0.333333  0.021222    -0.035
 13  O     0.333333  0.666667  0.521222    -0.026
 14  O     0.666667  0.333333  0.521222    -0.026
 15  O     0.333333  0.666667  0.021222    -0.035
 16  O     0         0         0.97754     -0.03
 17  O     0         0         0.47754     -0.022
 18  O     0.358595  0         0.837277    -0.026
 19  O     0.358595  0.358595  0.337277    -0.026
 20  O     0         0.641405  0.337277    -0.026
 21  O     0         0.358595  0.837277    -0.026
 22  O     0.641405  0.641405  0.837277    -0.026
 23  O     0.641405  0         0.337277    -0.026
 24  O     0.307715  0         0.165664    -0.03
 25  O     0.307715  0.307715  0.665664    -0.03
 26  O     0         0.692285  0.665664    -0.03
 27  O     0         0.307715  0.165664    -0.03
 28  O     0.692285  0.692285  0.165664    -0.03
 29  O     0.692285  0         0.665664    -0.03

If we want to interactively view this structure in JupyterLab, we can also import crystal_toolkit to view it:

import crystal_toolkit
structure
If you see this text, the Crystal Toolkit Jupyter Lab 

extension is not installed. You can install it by running 

"pip install crystaltoolkit-extension" 

from the same environment you run "jupyter lab". 

This only works in Jupyter Lab 3.x or above.


Structure Summary
Lattice
    abc : 6.2330216584852325 6.2330216584852325 11.58909
 angles : 90.0 90.0 119.99999637504301
 volume : 389.9215651386502
      A : 3.116511 -5.397955 0.0
      B : 3.116511 5.397955 0.0
      C : 0.0 0.0 11.58909
PeriodicSite: Y (3.1165, -1.7993, 2.7008) [0.6667, 0.3333, 0.2330]
PeriodicSite: Y (3.1165, 1.7993, 8.4953) [0.3333, 0.6667, 0.7330]
PeriodicSite: Y (3.1165, -1.7993, 8.4953) [0.6667, 0.3333, 0.7330]
PeriodicSite: Y (3.1165, 1.7993, 2.7008) [0.3333, 0.6667, 0.2330]
PeriodicSite: Y (0.0000, 0.0000, 8.9929) [0.0000, 0.0000, 0.7760]
PeriodicSite: Y (0.0000, 0.0000, 3.1983) [0.0000, 0.0000, 0.2760]
PeriodicSite: Mn (2.0768, -3.5972, 5.8105) [0.6664, 0.0000, 0.5014]
PeriodicSite: Mn (4.1537, 0.0000, 0.0159) [0.6664, 0.6664, 0.0014]
PeriodicSite: Mn (1.0397, 1.8008, 0.0159) [0.0000, 0.3336, 0.0014]
PeriodicSite: Mn (2.0768, 3.5972, 5.8105) [0.0000, 0.6664, 0.5014]
PeriodicSite: Mn (2.0793, 0.0000, 5.8105) [0.3336, 0.3336, 0.5014]
PeriodicSite: Mn (1.0397, -1.8008, 0.0159) [0.3336, 0.0000, 0.0014]
PeriodicSite: O (3.1165, -1.7993, 0.2459) [0.6667, 0.3333, 0.0212]
PeriodicSite: O (3.1165, 1.7993, 6.0405) [0.3333, 0.6667, 0.5212]
PeriodicSite: O (3.1165, -1.7993, 6.0405) [0.6667, 0.3333, 0.5212]
PeriodicSite: O (3.1165, 1.7993, 0.2459) [0.3333, 0.6667, 0.0212]
PeriodicSite: O (0.0000, 0.0000, 11.3288) [0.0000, 0.0000, 0.9775]
PeriodicSite: O (0.0000, 0.0000, 5.5343) [0.0000, 0.0000, 0.4775]
PeriodicSite: O (1.1176, -1.9357, 9.7033) [0.3586, 0.0000, 0.8373]
PeriodicSite: O (2.2351, -0.0000, 3.9087) [0.3586, 0.3586, 0.3373]
PeriodicSite: O (1.9989, 3.4623, 3.9087) [0.0000, 0.6414, 0.3373]
PeriodicSite: O (1.1176, 1.9357, 9.7033) [0.0000, 0.3586, 0.8373]
PeriodicSite: O (3.9979, -0.0000, 9.7033) [0.6414, 0.6414, 0.8373]
PeriodicSite: O (1.9989, -3.4623, 3.9087) [0.6414, 0.0000, 0.3373]
PeriodicSite: O (0.9590, -1.6610, 1.9199) [0.3077, 0.0000, 0.1657]
PeriodicSite: O (1.9180, -0.0000, 7.7144) [0.3077, 0.3077, 0.6657]
PeriodicSite: O (2.1575, 3.7369, 7.7144) [0.0000, 0.6923, 0.6657]
PeriodicSite: O (0.9590, 1.6610, 1.9199) [0.0000, 0.3077, 0.1657]
PeriodicSite: O (4.3150, 0.0000, 1.9199) [0.6923, 0.6923, 0.1657]
PeriodicSite: O (2.1575, -3.7369, 7.7144) [0.6923, 0.0000, 0.6657]

2. Building phase diagrams

Now that we've confirmed the existence of the target phase within the MP database, we'd like to better understand phase competition within the Y-Mn-O system. This means answering questions suchs as:

  1. Just how stable is YMnO\(_3\)?
  2. How much energy is released upon formation of YMnO\(_3\) from the corresponding binary oxides?
  3. What other phases might compete against the formation of YMnO\(_3\)?
  4. What kinds of oxygen chemical potentials stabilize YMnO\(_3\)?

These are all questions that can be answered by constructing phase diagrams within pymatgen.

2.1 EXERCISE: Acquiring all entries within the chemical system

Let's start by downloading entries for the full Y-Mn-O system using MPRester. How many entries exist within the full Y-Mn-O system?

with MPRester() as mpr:
    entries = mpr.get_entries_in_chemsys("Y-Mn-O")
print(len(entries))
160

2.2 Compositional phase diagrams

Now that we have all the entries within the Y-Mn-O system, we can create a ternary compositional phase diagram by simply passing the list of entries to create a PhaseDiagram object. Let's first import this class from the phase_diagram module:

from pymatgen.analysis.phase_diagram import PhaseDiagram

And we can create the phase diagram:

pd = PhaseDiagram(entries)

To plot the phase diagram, we can either: 1. Create a PDPlotter object and call get_plot() with custom arguments 2. Create a PDPlotter object and call show() 3. In JupyterLab, just type the name of the phase diagram object in a cell and click "enter"!

Let's do option 1 so that we can see the possible arguments of the plotting function. First we import PDPlotter:

from pymatgen.analysis.phase_diagram import PDPlotter

And then we create the plotting object and call the get_plot() function:

plotter = PDPlotter(pd)
plotter.get_plot()
",e.fontSize*=1.25):("e"===p||"E"===p)&&h>2?e.text="1"+p+(f>0?"+":I)+h:(e.text=lt(Math.pow(10,l),t,"","fakehover"),"D1"===o&&"y"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if("D"!==u)throw"unrecognized dtick "+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if("D1"===t.dtick){var d=String(e.text).charAt(0);"0"!==d&&"1"!==d||("y"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,c,g):"category"===u?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r="");e.text=String(r)}(t,o):"multicategory"===u?function(t,e,r){var n=Math.round(e.x),i=t._categories[n]||[],a=void 0===i[1]?"":String(i[1]),o=void 0===i[0]?"":String(i[0]);r?e.text=o+" - "+a:(e.text=a,e.text2=o)}(t,o,r):_t(t)?function(t,e,r,n,i){if("radians"!==t.thetaunit||r)e.text=lt(e.x,t,i,n);else{var a=e.x/180;if(0===a)e.text="0";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){for(var r=1;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,i=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/i),Math.round(r/i)]}(a);if(o[1]>=100)e.text=lt(s.deg2rad(e.x),t,i,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text="\u03c0":e.text=o[0]+"\u03c0":e.text=["",o[0],"l, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3e8d1a1cad5b448e9d92aa364c4f634c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "3fbaa876289c4e19b1941b7e8065c3cb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "3fbbc0d7cbe946de959952eed0a61834": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3fc8278c199f4b5180cf204a9b881b56": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4244265474e64811a7538d94f5946d79": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "42ae89c7be09411d9adc1e7734a54464": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "47d193e196b94e188f59216da841d756": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4830930c6ed548fb9f788e79e572be24": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_61c6f0c1e5024417b77958d93c90d106", "IPY_MODEL_0069f4a009a540d8936386058f06b6ef", "IPY_MODEL_2d18ad1f64884573aa8504ce87a89b22"], "layout": "IPY_MODEL_361692508bd14032973179041d8624c3"}}, "4a1ba16c957c4b36a5b8e487d26a4f43": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4c661a2fafce458d8c1879b22b386e28": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4dcd08f2973a4e9db4f5e659c53ea45c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "52451c6346b447a1bc1bf392065c67b4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "53bd66fa43da4cc38b4f7149d65d4e87": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "545ce68827254bceacdbacb958a33799": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "5fdbc054e35249f6ae1b7e34b6c1e877": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5ff1fa0bb5af425cad9df6786d620c49": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cd0a9c105b1a4255850c7c2157b747ad", "placeholder": "\u200b", "style": "IPY_MODEL_0a9679f7ac3c44f896c422b62186cfba", "value": " 7/7 [00:01<00:00, 3.05it/s]"}}, "603c494a218e462dbf6f4588ead5d827": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "61c6f0c1e5024417b77958d93c90d106": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_711ffbbe82cb4ccb8e28147504b36eda", "placeholder": "\u200b", "style": "IPY_MODEL_c0b9531299554173bd79b316fa351ba7", "value": "Y: 100%"}}, "64d938880d1c496ab115d59fb0552986": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_15429560e8284965abe2362d13a6c163", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_6bfc39adc15a49bb8d7aee1a163f0dc8", "value": 7.0}}, "673362e953e043cf9fe576f7cc21997d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c68f6700b9844084b2ab056052a19d42", "max": 2.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_d5bc5a26de0645008cb467cdf67d5ec0", "value": 2.0}}, "6b9bd424fe6b44528f0016b811158619": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6bfc39adc15a49bb8d7aee1a163f0dc8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "711ffbbe82cb4ccb8e28147504b36eda": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "72f50cd908c54878966751ca4962817c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_06961e922ff14785a519178edea72a93", "placeholder": "\u200b", "style": "IPY_MODEL_d54ef2aec13c4bbd90e183f4f8ff3e05", "value": "Mn-Y: 100%"}}, "74e1b808606d4df18be962f8b58cfe7d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_a558b5628a7b42e1abe7bdbcf7983f67", "IPY_MODEL_cde373d41bcc4c639257ef3cef7e41be", "IPY_MODEL_5ff1fa0bb5af425cad9df6786d620c49"], "layout": "IPY_MODEL_8dc425039331417c8f792e3b73d949d3"}}, "756b9498d9c34b6caf3623fb29ec7d54": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d8bba0e5b87e45b980bb142fb885898f", "IPY_MODEL_28b765e75c3d49ff876173a5da7fae72", "IPY_MODEL_1e3ecee66e2440c69f1b1cf3109741f5"], "layout": "IPY_MODEL_aee5ca6b515c4117b66cfaa37e016df8"}}, "77ee7fa8ef4646e09e7ba50d1d60f953": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "7cd1d98a390a4a4ca6bb68e4cbe3193f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ffeef29981b746179df50bbedc288be9", "IPY_MODEL_8e44b5bdc25d4ba495ddb44b44ce29ad", "IPY_MODEL_b8193921f04a46a8b9954945616bdfcf"], "layout": "IPY_MODEL_d42ccb63d0e14a7aa1cb1b591a8d6a1c"}}, "7dd833d9bb7b4b0aa42ab89dbe1ef2f9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "806fe6f312c049afa76697f32728439b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_72f50cd908c54878966751ca4962817c", "IPY_MODEL_64d938880d1c496ab115d59fb0552986", "IPY_MODEL_91d7cc1d4b2a4f659df7b898085e5fdf"], "layout": "IPY_MODEL_cdd4cf05a452496cbecd47140ce27f8b"}}, "8102a610da06401abd84ebcfbcbad34b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_603c494a218e462dbf6f4588ead5d827", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_212a2c5b77064d048ce662796f860859", "value": 63.0}}, "8296060f32a145f8bcb1bf1cc2f4cc08": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_967a529daea144e3981b3cb72c776d98", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_9f02e321af81451a98c6b71e6aaa3c1b", "value": 7.0}}, "86a7de5606594933b22af5413c6497db": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e7b6187cd808438aa47818cdc67afad1", "IPY_MODEL_d8120f9fce95487ebc7609d75e528fb5", "IPY_MODEL_9911635d29c54a8ebd05042b72f65953"], "layout": "IPY_MODEL_cca76730a871406f9e0480a6e78a9af1"}}, "87760115a0614c76a7f4d9e98941bbbd": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "884959a306a7486bb115057df1fa967f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8aabdf52a6464be6b32d0b1f93b8df4f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "8ae96cba176746a2be1e0cc118e76914": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8cf7308579d94a728544d0935825992e": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e474b4a48cc441ebafb0634c9130b9bb", "placeholder": "\u200b", "style": "IPY_MODEL_a9433ecc6d5e48d0b208968c837ff802", "value": " 7/7 [00:00<00:00, 5.74it/s]"}}, "8dc425039331417c8f792e3b73d949d3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8e44b5bdc25d4ba495ddb44b44ce29ad": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e62b2a2add174f11b46f6986179452c8", "max": 3.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_3fbaa876289c4e19b1941b7e8065c3cb", "value": 3.0}}, "8eac095dac754304ac8ffedebc80b557": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_aee9382c3ee6467d849896fb31feabfe", "IPY_MODEL_3408ca5539d24eb4a706c39814c0bb6d", "IPY_MODEL_383dc866487b4b23a411a2baee3417fa"], "layout": "IPY_MODEL_4a1ba16c957c4b36a5b8e487d26a4f43"}}, "8fd2a8c0ed044e90921b44d2dc6723d5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bf8aaa9c3da641fc832f5d832f35ddaf", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_2fcf2ca768654373ab0337d7cc61bd8e", "value": 7.0}}, "90dd471f4ecf4a55bc69b9ef9e081e35": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "91d7cc1d4b2a4f659df7b898085e5fdf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f8b03840317b43e181c416b1c04f0c37", "placeholder": "\u200b", "style": "IPY_MODEL_ba73ebed12e6435a8e436472d6815ac2", "value": " 7/7 [00:00<00:00, 6.64it/s]"}}, "934fcee29a664ae18804b0649709b35a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bb43c1df24d548918f0952c54684ffb7", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_2fd5653df0cb4b9ba0d1eab0c6d16e80", "value": 63.0}}, "94c65ff101724950abf8828aea78053a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "96506a339ba14957ae8b3977cd9a5ecd": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "967a529daea144e3981b3cb72c776d98": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9803502fd8d548889e7f8531f82196ee": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ccf4ea106938473d82d871ab5ebc3fcb", "IPY_MODEL_8102a610da06401abd84ebcfbcbad34b", "IPY_MODEL_16dc3c7cda96490aba35afd1ea946f1e"], "layout": "IPY_MODEL_22d03c3c134d41dfac027408d578711f"}}, "9911635d29c54a8ebd05042b72f65953": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b3066ba2b8d6484d82f656ffe8154ffc", "placeholder": "\u200b", "style": "IPY_MODEL_cbb3a14056784bc4821bffe85e366db3", "value": " 63/63 [00:01<00:00, 209.44it/s]"}}, "9f02e321af81451a98c6b71e6aaa3c1b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "9ff3b7a53ff7471cb841b61e573208f1": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a35126bc9b5b4767b9d1cfb55fe5e3c8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a558b5628a7b42e1abe7bdbcf7983f67": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_884959a306a7486bb115057df1fa967f", "placeholder": "\u200b", "style": "IPY_MODEL_3e8d1a1cad5b448e9d92aa364c4f634c", "value": "Y: 100%"}}, "a561032a1666466fb8966c199c44ffcf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6b9bd424fe6b44528f0016b811158619", "placeholder": "\u200b", "style": "IPY_MODEL_2b076698c1de46d19bbad6073ce073bb", "value": "C-Cl-Li-Mn: 100%"}}, "a57ea02037e0432aa63c192281ad7b85": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a9433ecc6d5e48d0b208968c837ff802": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "ac75bc6494264428bb1f55b297429304": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aee5ca6b515c4117b66cfaa37e016df8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aee9382c3ee6467d849896fb31feabfe": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2a023dc6daae48869ae9d451ad6761ce", "placeholder": "\u200b", "style": "IPY_MODEL_b875e7792946446e9919a1b7d3629133", "value": "100%"}}, "b0532f94711b4bfe8d020e0454498f2b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "b3066ba2b8d6484d82f656ffe8154ffc": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b47462474d9a410fa421d73dd0801339": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b47e05ba346945fca85935d468b46691": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b8193921f04a46a8b9954945616bdfcf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_94c65ff101724950abf8828aea78053a", "placeholder": "\u200b", "style": "IPY_MODEL_df2bb329589b4a6bb40b5ba4e35f664b", "value": " 3/3 [00:00<00:00, 2.34it/s]"}}, "b875e7792946446e9919a1b7d3629133": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "ba39be247a1649b0a69fb657273e5ceb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ef66cfa362b6453fbdf2767aad3b711c", "IPY_MODEL_673362e953e043cf9fe576f7cc21997d", "IPY_MODEL_ed94fca0e350457d9c54f0cfabccdef0"], "layout": "IPY_MODEL_9ff3b7a53ff7471cb841b61e573208f1"}}, "ba73ebed12e6435a8e436472d6815ac2": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "bb43c1df24d548918f0952c54684ffb7": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bf8aaa9c3da641fc832f5d832f35ddaf": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c0b9531299554173bd79b316fa351ba7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c49118bd00ef4dffa24bd172c414eb92": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c68f6700b9844084b2ab056052a19d42": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cae48579b36548ed962a92d9c0144c39": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cbb3a14056784bc4821bffe85e366db3": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "cca76730a871406f9e0480a6e78a9af1": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ccf4ea106938473d82d871ab5ebc3fcb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_12bb2cea51f0401da37ddd8f8b0d4c5d", "placeholder": "\u200b", "style": "IPY_MODEL_24f2b85c0bb4490998a2baa56dd20973", "value": "C-Cl-Li-Mn: 100%"}}, "cd0a9c105b1a4255850c7c2157b747ad": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cdd4cf05a452496cbecd47140ce27f8b": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cde373d41bcc4c639257ef3cef7e41be": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f5048d1b665c46cba40666691070acee", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_4dcd08f2973a4e9db4f5e659c53ea45c", "value": 7.0}}, "d42ccb63d0e14a7aa1cb1b591a8d6a1c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d463db6647664abe943ed63f6f73e924": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d54ef2aec13c4bbd90e183f4f8ff3e05": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "d5bc5a26de0645008cb467cdf67d5ec0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "d8120f9fce95487ebc7609d75e528fb5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4244265474e64811a7538d94f5946d79", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_e12605330a6e408bb560462570af7530", "value": 63.0}}, "d8bba0e5b87e45b980bb142fb885898f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3fbbc0d7cbe946de959952eed0a61834", "placeholder": "\u200b", "style": "IPY_MODEL_c49118bd00ef4dffa24bd172c414eb92", "value": "Y: 100%"}}, "de0be5d3ccc1417e95d3fbb832149cf2": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_367b3c66dca147579b9ca5b44f1ffbaf", "IPY_MODEL_fe21b8f2f62d4084a756bc94ee1742de", "IPY_MODEL_1751d08839b24c639945091afa4ba0a4"], "layout": "IPY_MODEL_3d9cdb20dc5a45e2b5f19ad74c8a1b59"}}, "de72e99833234faf90580321b53c59f9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "df2bb329589b4a6bb40b5ba4e35f664b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e12605330a6e408bb560462570af7530": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "e38d61b1b2f04381bccad2f2122d38fb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e5fb58508569492a81e8ac56ebf55d21", "IPY_MODEL_8fd2a8c0ed044e90921b44d2dc6723d5", "IPY_MODEL_8cf7308579d94a728544d0935825992e"], "layout": "IPY_MODEL_cae48579b36548ed962a92d9c0144c39"}}, "e474b4a48cc441ebafb0634c9130b9bb": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e544539e08c84f3491c1535ff94f0757": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e5fb58508569492a81e8ac56ebf55d21": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f11a7e632caf4b68821f49cd9c95c782", "placeholder": "\u200b", "style": "IPY_MODEL_e544539e08c84f3491c1535ff94f0757", "value": "Y: 100%"}}, "e62b2a2add174f11b46f6986179452c8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e6c433000799415d814bcf9f141bbf71": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e7b6187cd808438aa47818cdc67afad1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_52451c6346b447a1bc1bf392065c67b4", "placeholder": "\u200b", "style": "IPY_MODEL_42ae89c7be09411d9adc1e7734a54464", "value": "C-Cl-Li-Mn: 100%"}}, "ed62c3cb7e1b4606a56eb0a8f703ac54": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ed94fca0e350457d9c54f0cfabccdef0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_53bd66fa43da4cc38b4f7149d65d4e87", "placeholder": "\u200b", "style": "IPY_MODEL_7dd833d9bb7b4b0aa42ab89dbe1ef2f9", "value": " 2/2 [00:13<00:00, 5.85s/it]"}}, "ef66cfa362b6453fbdf2767aad3b711c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_1c27c28379cc401c8fc23256938c74d2", "placeholder": "\u200b", "style": "IPY_MODEL_90dd471f4ecf4a55bc69b9ef9e081e35", "value": "500000/1000000: 100%"}}, "f11a7e632caf4b68821f49cd9c95c782": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f5048d1b665c46cba40666691070acee": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f5264071d4b447feaeb39dfbcaf112ac": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f8b03840317b43e181c416b1c04f0c37": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fdf0592a65324f738c53d3a041bcab7f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d463db6647664abe943ed63f6f73e924", "placeholder": "\u200b", "style": "IPY_MODEL_4c661a2fafce458d8c1879b22b386e28", "value": " 7/7 [00:01<00:00, 4.82it/s]"}}, "fe21b8f2f62d4084a756bc94ee1742de": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_01793b7657cd4d5bb2257d1fcdaed4c0", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_b0532f94711b4bfe8d020e0454498f2b", "value": 63.0}}, "ffeef29981b746179df50bbedc288be9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5fdbc054e35249f6ae1b7e34b6c1e877", "placeholder": "\u200b", "style": "IPY_MODEL_2b9f4c306ed34a08b021d0a4c5e12232", "value": "100%"}}}, "version_major": 2, "version_minor": 0} ","\u2044","",o[1],"w_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3e8d1a1cad5b448e9d92aa364c4f634c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "3fbaa876289c4e19b1941b7e8065c3cb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "3fbbc0d7cbe946de959952eed0a61834": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3fc8278c199f4b5180cf204a9b881b56": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4244265474e64811a7538d94f5946d79": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "42ae89c7be09411d9adc1e7734a54464": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "47d193e196b94e188f59216da841d756": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4830930c6ed548fb9f788e79e572be24": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_61c6f0c1e5024417b77958d93c90d106", "IPY_MODEL_0069f4a009a540d8936386058f06b6ef", "IPY_MODEL_2d18ad1f64884573aa8504ce87a89b22"], "layout": "IPY_MODEL_361692508bd14032973179041d8624c3"}}, "4a1ba16c957c4b36a5b8e487d26a4f43": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4c661a2fafce458d8c1879b22b386e28": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4dcd08f2973a4e9db4f5e659c53ea45c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "52451c6346b447a1bc1bf392065c67b4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "53bd66fa43da4cc38b4f7149d65d4e87": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "545ce68827254bceacdbacb958a33799": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "5fdbc054e35249f6ae1b7e34b6c1e877": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5ff1fa0bb5af425cad9df6786d620c49": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cd0a9c105b1a4255850c7c2157b747ad", "placeholder": "\u200b", "style": "IPY_MODEL_0a9679f7ac3c44f896c422b62186cfba", "value": " 7/7 [00:01<00:00, 3.05it/s]"}}, "603c494a218e462dbf6f4588ead5d827": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "61c6f0c1e5024417b77958d93c90d106": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_711ffbbe82cb4ccb8e28147504b36eda", "placeholder": "\u200b", "style": "IPY_MODEL_c0b9531299554173bd79b316fa351ba7", "value": "Y: 100%"}}, "64d938880d1c496ab115d59fb0552986": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_15429560e8284965abe2362d13a6c163", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_6bfc39adc15a49bb8d7aee1a163f0dc8", "value": 7.0}}, "673362e953e043cf9fe576f7cc21997d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c68f6700b9844084b2ab056052a19d42", "max": 2.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_d5bc5a26de0645008cb467cdf67d5ec0", "value": 2.0}}, "6b9bd424fe6b44528f0016b811158619": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6bfc39adc15a49bb8d7aee1a163f0dc8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "711ffbbe82cb4ccb8e28147504b36eda": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "72f50cd908c54878966751ca4962817c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_06961e922ff14785a519178edea72a93", "placeholder": "\u200b", "style": "IPY_MODEL_d54ef2aec13c4bbd90e183f4f8ff3e05", "value": "Mn-Y: 100%"}}, "74e1b808606d4df18be962f8b58cfe7d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_a558b5628a7b42e1abe7bdbcf7983f67", "IPY_MODEL_cde373d41bcc4c639257ef3cef7e41be", "IPY_MODEL_5ff1fa0bb5af425cad9df6786d620c49"], "layout": "IPY_MODEL_8dc425039331417c8f792e3b73d949d3"}}, "756b9498d9c34b6caf3623fb29ec7d54": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d8bba0e5b87e45b980bb142fb885898f", "IPY_MODEL_28b765e75c3d49ff876173a5da7fae72", "IPY_MODEL_1e3ecee66e2440c69f1b1cf3109741f5"], "layout": "IPY_MODEL_aee5ca6b515c4117b66cfaa37e016df8"}}, "77ee7fa8ef4646e09e7ba50d1d60f953": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "7cd1d98a390a4a4ca6bb68e4cbe3193f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ffeef29981b746179df50bbedc288be9", "IPY_MODEL_8e44b5bdc25d4ba495ddb44b44ce29ad", "IPY_MODEL_b8193921f04a46a8b9954945616bdfcf"], "layout": "IPY_MODEL_d42ccb63d0e14a7aa1cb1b591a8d6a1c"}}, "7dd833d9bb7b4b0aa42ab89dbe1ef2f9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "806fe6f312c049afa76697f32728439b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_72f50cd908c54878966751ca4962817c", "IPY_MODEL_64d938880d1c496ab115d59fb0552986", "IPY_MODEL_91d7cc1d4b2a4f659df7b898085e5fdf"], "layout": "IPY_MODEL_cdd4cf05a452496cbecd47140ce27f8b"}}, "8102a610da06401abd84ebcfbcbad34b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_603c494a218e462dbf6f4588ead5d827", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_212a2c5b77064d048ce662796f860859", "value": 63.0}}, "8296060f32a145f8bcb1bf1cc2f4cc08": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_967a529daea144e3981b3cb72c776d98", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_9f02e321af81451a98c6b71e6aaa3c1b", "value": 7.0}}, "86a7de5606594933b22af5413c6497db": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e7b6187cd808438aa47818cdc67afad1", "IPY_MODEL_d8120f9fce95487ebc7609d75e528fb5", "IPY_MODEL_9911635d29c54a8ebd05042b72f65953"], "layout": "IPY_MODEL_cca76730a871406f9e0480a6e78a9af1"}}, "87760115a0614c76a7f4d9e98941bbbd": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "884959a306a7486bb115057df1fa967f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8aabdf52a6464be6b32d0b1f93b8df4f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "8ae96cba176746a2be1e0cc118e76914": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8cf7308579d94a728544d0935825992e": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e474b4a48cc441ebafb0634c9130b9bb", "placeholder": "\u200b", "style": "IPY_MODEL_a9433ecc6d5e48d0b208968c837ff802", "value": " 7/7 [00:00<00:00, 5.74it/s]"}}, "8dc425039331417c8f792e3b73d949d3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8e44b5bdc25d4ba495ddb44b44ce29ad": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e62b2a2add174f11b46f6986179452c8", "max": 3.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_3fbaa876289c4e19b1941b7e8065c3cb", "value": 3.0}}, "8eac095dac754304ac8ffedebc80b557": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_aee9382c3ee6467d849896fb31feabfe", "IPY_MODEL_3408ca5539d24eb4a706c39814c0bb6d", "IPY_MODEL_383dc866487b4b23a411a2baee3417fa"], "layout": "IPY_MODEL_4a1ba16c957c4b36a5b8e487d26a4f43"}}, "8fd2a8c0ed044e90921b44d2dc6723d5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bf8aaa9c3da641fc832f5d832f35ddaf", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_2fcf2ca768654373ab0337d7cc61bd8e", "value": 7.0}}, "90dd471f4ecf4a55bc69b9ef9e081e35": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "91d7cc1d4b2a4f659df7b898085e5fdf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f8b03840317b43e181c416b1c04f0c37", "placeholder": "\u200b", "style": "IPY_MODEL_ba73ebed12e6435a8e436472d6815ac2", "value": " 7/7 [00:00<00:00, 6.64it/s]"}}, "934fcee29a664ae18804b0649709b35a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bb43c1df24d548918f0952c54684ffb7", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_2fd5653df0cb4b9ba0d1eab0c6d16e80", "value": 63.0}}, "94c65ff101724950abf8828aea78053a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "96506a339ba14957ae8b3977cd9a5ecd": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "967a529daea144e3981b3cb72c776d98": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9803502fd8d548889e7f8531f82196ee": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ccf4ea106938473d82d871ab5ebc3fcb", "IPY_MODEL_8102a610da06401abd84ebcfbcbad34b", "IPY_MODEL_16dc3c7cda96490aba35afd1ea946f1e"], "layout": "IPY_MODEL_22d03c3c134d41dfac027408d578711f"}}, "9911635d29c54a8ebd05042b72f65953": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b3066ba2b8d6484d82f656ffe8154ffc", "placeholder": "\u200b", "style": "IPY_MODEL_cbb3a14056784bc4821bffe85e366db3", "value": " 63/63 [00:01<00:00, 209.44it/s]"}}, "9f02e321af81451a98c6b71e6aaa3c1b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "9ff3b7a53ff7471cb841b61e573208f1": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a35126bc9b5b4767b9d1cfb55fe5e3c8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a558b5628a7b42e1abe7bdbcf7983f67": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_884959a306a7486bb115057df1fa967f", "placeholder": "\u200b", "style": "IPY_MODEL_3e8d1a1cad5b448e9d92aa364c4f634c", "value": "Y: 100%"}}, "a561032a1666466fb8966c199c44ffcf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6b9bd424fe6b44528f0016b811158619", "placeholder": "\u200b", "style": "IPY_MODEL_2b076698c1de46d19bbad6073ce073bb", "value": "C-Cl-Li-Mn: 100%"}}, "a57ea02037e0432aa63c192281ad7b85": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a9433ecc6d5e48d0b208968c837ff802": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "ac75bc6494264428bb1f55b297429304": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aee5ca6b515c4117b66cfaa37e016df8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aee9382c3ee6467d849896fb31feabfe": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2a023dc6daae48869ae9d451ad6761ce", "placeholder": "\u200b", "style": "IPY_MODEL_b875e7792946446e9919a1b7d3629133", "value": "100%"}}, "b0532f94711b4bfe8d020e0454498f2b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "b3066ba2b8d6484d82f656ffe8154ffc": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b47462474d9a410fa421d73dd0801339": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b47e05ba346945fca85935d468b46691": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b8193921f04a46a8b9954945616bdfcf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_94c65ff101724950abf8828aea78053a", "placeholder": "\u200b", "style": "IPY_MODEL_df2bb329589b4a6bb40b5ba4e35f664b", "value": " 3/3 [00:00<00:00, 2.34it/s]"}}, "b875e7792946446e9919a1b7d3629133": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "ba39be247a1649b0a69fb657273e5ceb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ef66cfa362b6453fbdf2767aad3b711c", "IPY_MODEL_673362e953e043cf9fe576f7cc21997d", "IPY_MODEL_ed94fca0e350457d9c54f0cfabccdef0"], "layout": "IPY_MODEL_9ff3b7a53ff7471cb841b61e573208f1"}}, "ba73ebed12e6435a8e436472d6815ac2": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "bb43c1df24d548918f0952c54684ffb7": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bf8aaa9c3da641fc832f5d832f35ddaf": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c0b9531299554173bd79b316fa351ba7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c49118bd00ef4dffa24bd172c414eb92": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c68f6700b9844084b2ab056052a19d42": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cae48579b36548ed962a92d9c0144c39": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cbb3a14056784bc4821bffe85e366db3": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "cca76730a871406f9e0480a6e78a9af1": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ccf4ea106938473d82d871ab5ebc3fcb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_12bb2cea51f0401da37ddd8f8b0d4c5d", "placeholder": "\u200b", "style": "IPY_MODEL_24f2b85c0bb4490998a2baa56dd20973", "value": "C-Cl-Li-Mn: 100%"}}, "cd0a9c105b1a4255850c7c2157b747ad": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cdd4cf05a452496cbecd47140ce27f8b": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cde373d41bcc4c639257ef3cef7e41be": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f5048d1b665c46cba40666691070acee", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_4dcd08f2973a4e9db4f5e659c53ea45c", "value": 7.0}}, "d42ccb63d0e14a7aa1cb1b591a8d6a1c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d463db6647664abe943ed63f6f73e924": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d54ef2aec13c4bbd90e183f4f8ff3e05": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "d5bc5a26de0645008cb467cdf67d5ec0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "d8120f9fce95487ebc7609d75e528fb5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4244265474e64811a7538d94f5946d79", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_e12605330a6e408bb560462570af7530", "value": 63.0}}, "d8bba0e5b87e45b980bb142fb885898f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3fbbc0d7cbe946de959952eed0a61834", "placeholder": "\u200b", "style": "IPY_MODEL_c49118bd00ef4dffa24bd172c414eb92", "value": "Y: 100%"}}, "de0be5d3ccc1417e95d3fbb832149cf2": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_367b3c66dca147579b9ca5b44f1ffbaf", "IPY_MODEL_fe21b8f2f62d4084a756bc94ee1742de", "IPY_MODEL_1751d08839b24c639945091afa4ba0a4"], "layout": "IPY_MODEL_3d9cdb20dc5a45e2b5f19ad74c8a1b59"}}, "de72e99833234faf90580321b53c59f9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "df2bb329589b4a6bb40b5ba4e35f664b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e12605330a6e408bb560462570af7530": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "e38d61b1b2f04381bccad2f2122d38fb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e5fb58508569492a81e8ac56ebf55d21", "IPY_MODEL_8fd2a8c0ed044e90921b44d2dc6723d5", "IPY_MODEL_8cf7308579d94a728544d0935825992e"], "layout": "IPY_MODEL_cae48579b36548ed962a92d9c0144c39"}}, "e474b4a48cc441ebafb0634c9130b9bb": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e544539e08c84f3491c1535ff94f0757": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e5fb58508569492a81e8ac56ebf55d21": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f11a7e632caf4b68821f49cd9c95c782", "placeholder": "\u200b", "style": "IPY_MODEL_e544539e08c84f3491c1535ff94f0757", "value": "Y: 100%"}}, "e62b2a2add174f11b46f6986179452c8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e6c433000799415d814bcf9f141bbf71": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e7b6187cd808438aa47818cdc67afad1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_52451c6346b447a1bc1bf392065c67b4", "placeholder": "\u200b", "style": "IPY_MODEL_42ae89c7be09411d9adc1e7734a54464", "value": "C-Cl-Li-Mn: 100%"}}, "ed62c3cb7e1b4606a56eb0a8f703ac54": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ed94fca0e350457d9c54f0cfabccdef0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_53bd66fa43da4cc38b4f7149d65d4e87", "placeholder": "\u200b", "style": "IPY_MODEL_7dd833d9bb7b4b0aa42ab89dbe1ef2f9", "value": " 2/2 [00:13<00:00, 5.85s/it]"}}, "ef66cfa362b6453fbdf2767aad3b711c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_1c27c28379cc401c8fc23256938c74d2", "placeholder": "\u200b", "style": "IPY_MODEL_90dd471f4ecf4a55bc69b9ef9e081e35", "value": "500000/1000000: 100%"}}, "f11a7e632caf4b68821f49cd9c95c782": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f5048d1b665c46cba40666691070acee": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f5264071d4b447feaeb39dfbcaf112ac": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f8b03840317b43e181c416b1c04f0c37": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fdf0592a65324f738c53d3a041bcab7f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d463db6647664abe943ed63f6f73e924", "placeholder": "\u200b", "style": "IPY_MODEL_4c661a2fafce458d8c1879b22b386e28", "value": " 7/7 [00:01<00:00, 4.82it/s]"}}, "fe21b8f2f62d4084a756bc94ee1742de": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_01793b7657cd4d5bb2257d1fcdaed4c0", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_b0532f94711b4bfe8d020e0454498f2b", "value": 63.0}}, "ffeef29981b746179df50bbedc288be9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5fdbc054e35249f6ae1b7e34b6c1e877", "placeholder": "\u200b", "style": "IPY_MODEL_2b9f4c306ed34a08b021d0a4c5e12232", "value": "100%"}}}, "version_major": 2, "version_minor": 0} ","\u03c0"].join(""),l&&(e.text=I+e.text)}}}}(t,o,r,c,g):function(t,e,r,n,i){"never"===i?i="":"all"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(i="hide");e.text=lt(e.x,t,i,n)}(t,o,0,c,g),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),"boundaries"===t.tickson||t.showdividers){var m=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[m(o.x-.5),m(o.x+t.dtick-.5)]}return o},B.hoverLabelText=function(t,e,r){if(r!==P&&r!==e)return B.hoverLabelText(t,e)+" - "+B.hoverLabelText(t,r);var n="log"===t.type&&e<=0,i=B.tickText(t,t.c2l(n?-e:e),"hover").text;return n?0===e?"0":I+i:i};var at=["f","p","n","\u03bc","m","","k","M","G","T"];function ot(t){return"SI"===t||"B"===t}function st(t){return t>14||t<-15}function lt(t,e,r,n){var a=t<0,o=e._tickround,l=r||e.exponentformat||"B",c=e._tickexponent,u=B.getTickFormat(e),f=e.separatethousands;if(n){var h={exponentformat:l,minexponent:e.minexponent,dtick:"none"===e.showexponent?e.dtick:i(t)&&Math.abs(t)||1,range:"none"===e.showexponent?e.range.map(e.r2d):[0,t||1]};nt(h),o=(Number(h._tickround)||0)+4,c=h._tickexponent,e.hoverformat&&(u=e.hoverformat)}if(u)return e._numFormat(u)(t).replace(/-/g,I);var p,d=Math.pow(10,-o)/2;if("none"===l&&(c=0),(t=Math.abs(t))"+p+"": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "3fc8278c199f4b5180cf204a9b881b56": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4244265474e64811a7538d94f5946d79": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "42ae89c7be09411d9adc1e7734a54464": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "47d193e196b94e188f59216da841d756": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4830930c6ed548fb9f788e79e572be24": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_61c6f0c1e5024417b77958d93c90d106", "IPY_MODEL_0069f4a009a540d8936386058f06b6ef", "IPY_MODEL_2d18ad1f64884573aa8504ce87a89b22"], "layout": "IPY_MODEL_361692508bd14032973179041d8624c3"}}, "4a1ba16c957c4b36a5b8e487d26a4f43": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "4c661a2fafce458d8c1879b22b386e28": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "4dcd08f2973a4e9db4f5e659c53ea45c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "52451c6346b447a1bc1bf392065c67b4": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "53bd66fa43da4cc38b4f7149d65d4e87": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "545ce68827254bceacdbacb958a33799": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "5fdbc054e35249f6ae1b7e34b6c1e877": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "5ff1fa0bb5af425cad9df6786d620c49": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_cd0a9c105b1a4255850c7c2157b747ad", "placeholder": "\u200b", "style": "IPY_MODEL_0a9679f7ac3c44f896c422b62186cfba", "value": " 7/7 [00:01<00:00, 3.05it/s]"}}, "603c494a218e462dbf6f4588ead5d827": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "61c6f0c1e5024417b77958d93c90d106": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_711ffbbe82cb4ccb8e28147504b36eda", "placeholder": "\u200b", "style": "IPY_MODEL_c0b9531299554173bd79b316fa351ba7", "value": "Y: 100%"}}, "64d938880d1c496ab115d59fb0552986": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_15429560e8284965abe2362d13a6c163", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_6bfc39adc15a49bb8d7aee1a163f0dc8", "value": 7.0}}, "673362e953e043cf9fe576f7cc21997d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_c68f6700b9844084b2ab056052a19d42", "max": 2.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_d5bc5a26de0645008cb467cdf67d5ec0", "value": 2.0}}, "6b9bd424fe6b44528f0016b811158619": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "6bfc39adc15a49bb8d7aee1a163f0dc8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "711ffbbe82cb4ccb8e28147504b36eda": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "72f50cd908c54878966751ca4962817c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_06961e922ff14785a519178edea72a93", "placeholder": "\u200b", "style": "IPY_MODEL_d54ef2aec13c4bbd90e183f4f8ff3e05", "value": "Mn-Y: 100%"}}, "74e1b808606d4df18be962f8b58cfe7d": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_a558b5628a7b42e1abe7bdbcf7983f67", "IPY_MODEL_cde373d41bcc4c639257ef3cef7e41be", "IPY_MODEL_5ff1fa0bb5af425cad9df6786d620c49"], "layout": "IPY_MODEL_8dc425039331417c8f792e3b73d949d3"}}, "756b9498d9c34b6caf3623fb29ec7d54": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_d8bba0e5b87e45b980bb142fb885898f", "IPY_MODEL_28b765e75c3d49ff876173a5da7fae72", "IPY_MODEL_1e3ecee66e2440c69f1b1cf3109741f5"], "layout": "IPY_MODEL_aee5ca6b515c4117b66cfaa37e016df8"}}, "77ee7fa8ef4646e09e7ba50d1d60f953": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "7cd1d98a390a4a4ca6bb68e4cbe3193f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ffeef29981b746179df50bbedc288be9", "IPY_MODEL_8e44b5bdc25d4ba495ddb44b44ce29ad", "IPY_MODEL_b8193921f04a46a8b9954945616bdfcf"], "layout": "IPY_MODEL_d42ccb63d0e14a7aa1cb1b591a8d6a1c"}}, "7dd833d9bb7b4b0aa42ab89dbe1ef2f9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "806fe6f312c049afa76697f32728439b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_72f50cd908c54878966751ca4962817c", "IPY_MODEL_64d938880d1c496ab115d59fb0552986", "IPY_MODEL_91d7cc1d4b2a4f659df7b898085e5fdf"], "layout": "IPY_MODEL_cdd4cf05a452496cbecd47140ce27f8b"}}, "8102a610da06401abd84ebcfbcbad34b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_603c494a218e462dbf6f4588ead5d827", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_212a2c5b77064d048ce662796f860859", "value": 63.0}}, "8296060f32a145f8bcb1bf1cc2f4cc08": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_967a529daea144e3981b3cb72c776d98", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_9f02e321af81451a98c6b71e6aaa3c1b", "value": 7.0}}, "86a7de5606594933b22af5413c6497db": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e7b6187cd808438aa47818cdc67afad1", "IPY_MODEL_d8120f9fce95487ebc7609d75e528fb5", "IPY_MODEL_9911635d29c54a8ebd05042b72f65953"], "layout": "IPY_MODEL_cca76730a871406f9e0480a6e78a9af1"}}, "87760115a0614c76a7f4d9e98941bbbd": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "884959a306a7486bb115057df1fa967f": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8aabdf52a6464be6b32d0b1f93b8df4f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "8ae96cba176746a2be1e0cc118e76914": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8cf7308579d94a728544d0935825992e": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e474b4a48cc441ebafb0634c9130b9bb", "placeholder": "\u200b", "style": "IPY_MODEL_a9433ecc6d5e48d0b208968c837ff802", "value": " 7/7 [00:00<00:00, 5.74it/s]"}}, "8dc425039331417c8f792e3b73d949d3": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "8e44b5bdc25d4ba495ddb44b44ce29ad": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_e62b2a2add174f11b46f6986179452c8", "max": 3.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_3fbaa876289c4e19b1941b7e8065c3cb", "value": 3.0}}, "8eac095dac754304ac8ffedebc80b557": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_aee9382c3ee6467d849896fb31feabfe", "IPY_MODEL_3408ca5539d24eb4a706c39814c0bb6d", "IPY_MODEL_383dc866487b4b23a411a2baee3417fa"], "layout": "IPY_MODEL_4a1ba16c957c4b36a5b8e487d26a4f43"}}, "8fd2a8c0ed044e90921b44d2dc6723d5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bf8aaa9c3da641fc832f5d832f35ddaf", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_2fcf2ca768654373ab0337d7cc61bd8e", "value": 7.0}}, "90dd471f4ecf4a55bc69b9ef9e081e35": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "91d7cc1d4b2a4f659df7b898085e5fdf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f8b03840317b43e181c416b1c04f0c37", "placeholder": "\u200b", "style": "IPY_MODEL_ba73ebed12e6435a8e436472d6815ac2", "value": " 7/7 [00:00<00:00, 6.64it/s]"}}, "934fcee29a664ae18804b0649709b35a": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_bb43c1df24d548918f0952c54684ffb7", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_2fd5653df0cb4b9ba0d1eab0c6d16e80", "value": 63.0}}, "94c65ff101724950abf8828aea78053a": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "96506a339ba14957ae8b3977cd9a5ecd": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "967a529daea144e3981b3cb72c776d98": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "9803502fd8d548889e7f8531f82196ee": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ccf4ea106938473d82d871ab5ebc3fcb", "IPY_MODEL_8102a610da06401abd84ebcfbcbad34b", "IPY_MODEL_16dc3c7cda96490aba35afd1ea946f1e"], "layout": "IPY_MODEL_22d03c3c134d41dfac027408d578711f"}}, "9911635d29c54a8ebd05042b72f65953": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_b3066ba2b8d6484d82f656ffe8154ffc", "placeholder": "\u200b", "style": "IPY_MODEL_cbb3a14056784bc4821bffe85e366db3", "value": " 63/63 [00:01<00:00, 209.44it/s]"}}, "9f02e321af81451a98c6b71e6aaa3c1b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "9ff3b7a53ff7471cb841b61e573208f1": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "a35126bc9b5b4767b9d1cfb55fe5e3c8": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a558b5628a7b42e1abe7bdbcf7983f67": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_884959a306a7486bb115057df1fa967f", "placeholder": "\u200b", "style": "IPY_MODEL_3e8d1a1cad5b448e9d92aa364c4f634c", "value": "Y: 100%"}}, "a561032a1666466fb8966c199c44ffcf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_6b9bd424fe6b44528f0016b811158619", "placeholder": "\u200b", "style": "IPY_MODEL_2b076698c1de46d19bbad6073ce073bb", "value": "C-Cl-Li-Mn: 100%"}}, "a57ea02037e0432aa63c192281ad7b85": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "a9433ecc6d5e48d0b208968c837ff802": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "ac75bc6494264428bb1f55b297429304": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aee5ca6b515c4117b66cfaa37e016df8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "aee9382c3ee6467d849896fb31feabfe": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_2a023dc6daae48869ae9d451ad6761ce", "placeholder": "\u200b", "style": "IPY_MODEL_b875e7792946446e9919a1b7d3629133", "value": "100%"}}, "b0532f94711b4bfe8d020e0454498f2b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "b3066ba2b8d6484d82f656ffe8154ffc": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b47462474d9a410fa421d73dd0801339": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b47e05ba346945fca85935d468b46691": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "b8193921f04a46a8b9954945616bdfcf": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_94c65ff101724950abf8828aea78053a", "placeholder": "\u200b", "style": "IPY_MODEL_df2bb329589b4a6bb40b5ba4e35f664b", "value": " 3/3 [00:00<00:00, 2.34it/s]"}}, "b875e7792946446e9919a1b7d3629133": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "ba39be247a1649b0a69fb657273e5ceb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_ef66cfa362b6453fbdf2767aad3b711c", "IPY_MODEL_673362e953e043cf9fe576f7cc21997d", "IPY_MODEL_ed94fca0e350457d9c54f0cfabccdef0"], "layout": "IPY_MODEL_9ff3b7a53ff7471cb841b61e573208f1"}}, "ba73ebed12e6435a8e436472d6815ac2": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "bb43c1df24d548918f0952c54684ffb7": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "bf8aaa9c3da641fc832f5d832f35ddaf": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "c0b9531299554173bd79b316fa351ba7": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c49118bd00ef4dffa24bd172c414eb92": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "c68f6700b9844084b2ab056052a19d42": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cae48579b36548ed962a92d9c0144c39": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cbb3a14056784bc4821bffe85e366db3": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "cca76730a871406f9e0480a6e78a9af1": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ccf4ea106938473d82d871ab5ebc3fcb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_12bb2cea51f0401da37ddd8f8b0d4c5d", "placeholder": "\u200b", "style": "IPY_MODEL_24f2b85c0bb4490998a2baa56dd20973", "value": "C-Cl-Li-Mn: 100%"}}, "cd0a9c105b1a4255850c7c2157b747ad": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cdd4cf05a452496cbecd47140ce27f8b": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "cde373d41bcc4c639257ef3cef7e41be": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f5048d1b665c46cba40666691070acee", "max": 7.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_4dcd08f2973a4e9db4f5e659c53ea45c", "value": 7.0}}, "d42ccb63d0e14a7aa1cb1b591a8d6a1c": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d463db6647664abe943ed63f6f73e924": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "d54ef2aec13c4bbd90e183f4f8ff3e05": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "d5bc5a26de0645008cb467cdf67d5ec0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "d8120f9fce95487ebc7609d75e528fb5": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_4244265474e64811a7538d94f5946d79", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_e12605330a6e408bb560462570af7530", "value": 63.0}}, "d8bba0e5b87e45b980bb142fb885898f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_3fbbc0d7cbe946de959952eed0a61834", "placeholder": "\u200b", "style": "IPY_MODEL_c49118bd00ef4dffa24bd172c414eb92", "value": "Y: 100%"}}, "de0be5d3ccc1417e95d3fbb832149cf2": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_367b3c66dca147579b9ca5b44f1ffbaf", "IPY_MODEL_fe21b8f2f62d4084a756bc94ee1742de", "IPY_MODEL_1751d08839b24c639945091afa4ba0a4"], "layout": "IPY_MODEL_3d9cdb20dc5a45e2b5f19ad74c8a1b59"}}, "de72e99833234faf90580321b53c59f9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "df2bb329589b4a6bb40b5ba4e35f664b": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e12605330a6e408bb560462570af7530": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "ProgressStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "ProgressStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "bar_color": null, "description_width": ""}}, "e38d61b1b2f04381bccad2f2122d38fb": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HBoxModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HBoxModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HBoxView", "box_style": "", "children": ["IPY_MODEL_e5fb58508569492a81e8ac56ebf55d21", "IPY_MODEL_8fd2a8c0ed044e90921b44d2dc6723d5", "IPY_MODEL_8cf7308579d94a728544d0935825992e"], "layout": "IPY_MODEL_cae48579b36548ed962a92d9c0144c39"}}, "e474b4a48cc441ebafb0634c9130b9bb": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e544539e08c84f3491c1535ff94f0757": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e5fb58508569492a81e8ac56ebf55d21": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_f11a7e632caf4b68821f49cd9c95c782", "placeholder": "\u200b", "style": "IPY_MODEL_e544539e08c84f3491c1535ff94f0757", "value": "Y: 100%"}}, "e62b2a2add174f11b46f6986179452c8": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "e6c433000799415d814bcf9f141bbf71": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "DescriptionStyleModel", "state": {"_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "DescriptionStyleModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "StyleView", "description_width": ""}}, "e7b6187cd808438aa47818cdc67afad1": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_52451c6346b447a1bc1bf392065c67b4", "placeholder": "\u200b", "style": "IPY_MODEL_42ae89c7be09411d9adc1e7734a54464", "value": "C-Cl-Li-Mn: 100%"}}, "ed62c3cb7e1b4606a56eb0a8f703ac54": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "ed94fca0e350457d9c54f0cfabccdef0": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_53bd66fa43da4cc38b4f7149d65d4e87", "placeholder": "\u200b", "style": "IPY_MODEL_7dd833d9bb7b4b0aa42ab89dbe1ef2f9", "value": " 2/2 [00:13<00:00, 5.85s/it]"}}, "ef66cfa362b6453fbdf2767aad3b711c": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_1c27c28379cc401c8fc23256938c74d2", "placeholder": "\u200b", "style": "IPY_MODEL_90dd471f4ecf4a55bc69b9ef9e081e35", "value": "500000/1000000: 100%"}}, "f11a7e632caf4b68821f49cd9c95c782": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f5048d1b665c46cba40666691070acee": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f5264071d4b447feaeb39dfbcaf112ac": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "f8b03840317b43e181c416b1c04f0c37": {"model_module": "@jupyter-widgets/base", "model_module_version": "1.2.0", "model_name": "LayoutModel", "state": {"_model_module": "@jupyter-widgets/base", "_model_module_version": "1.2.0", "_model_name": "LayoutModel", "_view_count": null, "_view_module": "@jupyter-widgets/base", "_view_module_version": "1.2.0", "_view_name": "LayoutView", "align_content": null, "align_items": null, "align_self": null, "border": null, "bottom": null, "display": null, "flex": null, "flex_flow": null, "grid_area": null, "grid_auto_columns": null, "grid_auto_flow": null, "grid_auto_rows": null, "grid_column": null, "grid_gap": null, "grid_row": null, "grid_template_areas": null, "grid_template_columns": null, "grid_template_rows": null, "height": null, "justify_content": null, "justify_items": null, "left": null, "margin": null, "max_height": null, "max_width": null, "min_height": null, "min_width": null, "object_fit": null, "object_position": null, "order": null, "overflow": null, "overflow_x": null, "overflow_y": null, "padding": null, "right": null, "top": null, "visibility": null, "width": null}}, "fdf0592a65324f738c53d3a041bcab7f": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_d463db6647664abe943ed63f6f73e924", "placeholder": "\u200b", "style": "IPY_MODEL_4c661a2fafce458d8c1879b22b386e28", "value": " 7/7 [00:01<00:00, 4.82it/s]"}}, "fe21b8f2f62d4084a756bc94ee1742de": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "FloatProgressModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "FloatProgressModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "ProgressView", "bar_style": "success", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_01793b7657cd4d5bb2257d1fcdaed4c0", "max": 63.0, "min": 0.0, "orientation": "horizontal", "style": "IPY_MODEL_b0532f94711b4bfe8d020e0454498f2b", "value": 63.0}}, "ffeef29981b746179df50bbedc288be9": {"model_module": "@jupyter-widgets/controls", "model_module_version": "1.5.0", "model_name": "HTMLModel", "state": {"_dom_classes": [], "_model_module": "@jupyter-widgets/controls", "_model_module_version": "1.5.0", "_model_name": "HTMLModel", "_view_count": null, "_view_module": "@jupyter-widgets/controls", "_view_module_version": "1.5.0", "_view_name": "HTMLView", "description": "", "description_tooltip": null, "layout": "IPY_MODEL_5fdbc054e35249f6ae1b7e34b6c1e877", "placeholder": "\u200b", "style": "IPY_MODEL_2b9f4c306ed34a08b021d0a4c5e12232", "value": "100%"}}}, "version_major": 2, "version_minor": 0} ":"B"===l&&9===c?t+="B":ot(l)&&(t+=at[c/3+5]));return a?I+t:t}function ct(t,e){for(var r=[],n={},i=0;i1&&r=i.min&&t=0,a=u(t,e[1])<=0;return(r||i)&&(n||a)}if(t.tickformatstops&&t.tickformatstops.length>0)switch(t.type){case"date":case"linear":for(e=0;e=o(i)))){r=n;break}break;case"log":for(e=0;e0?r.bottom-f:0,h)))),e.automargin){n={x:0,y:0,r:0,l:0,t:0,b:0};var p=[0,1];if("x"===d){if("b"===l?n[l]=e._depth:(n[l]=e._depth=Math.max(r.width>0?f-r.top:0,h),p.reverse()),r.width>0){var m=r.right-(e._offset+e._length);m>0&&(n.xr=1,n.r=m);var v=e._offset-r.left;v>0&&(n.xl=0,n.l=v)}}else if("l"===l?n[l]=e._depth=Math.max(r.height>0?f-r.left:0,h):(n[l]=e._depth=Math.max(r.height>0?r.right-f:0,h),p.reverse()),r.height>0){var y=r.bottom-(e._offset+e._length);y>0&&(n.yb=0,n.b=y);var x=e._offset-r.top;x>0&&(n.yt=1,n.t=x)}n[g]="free"===e.anchor?e.position:e._anchorAxis.domain[p[0]],e.title.text!==c._dfltTitle[d]&&(n[l]+=ht(e)+(e.title.standoff||0)),e.mirror&&"free"!==e.anchor&&((i={x:0,y:0,r:0,l:0,t:0,b:0})[u]=e.linewidth,e.mirror&&!0!==e.mirror&&(i[u]+=h),!0===e.mirror||"ticks"===e.mirror?i[g]=e._anchorAxis.domain[p[1]]:"all"!==e.mirror&&"allticks"!==e.mirror||(i[g]=[e._counterDomainMin,e._counterDomainMax][p[1]]))}K&&(s=o.getComponentMethod("rangeslider","autoMarginOpts")(t,e)),a.autoMargin(t,gt(e),n),a.autoMargin(t,mt(e),i),a.autoMargin(t,vt(e),s)})),r.skipTitle||K&&"bottom"===e.side||Z.push((function(){return function(t,e){var r,n=t._fullLayout,i=e._id,a=i.charAt(0),o=e.title.font.size;if(e.title.hasOwnProperty("standoff"))r=e._depth+e.title.standoff+ht(e);else{var s=-1!==(e.ticklabelposition||"").indexOf("inside");if("multicategory"===e.type)r=e._depth;else{var l=1.5*o;s&&(l=.5*o,"outside"===e.ticks&&(l+=e.ticklen)),r=10+l+(e.linewidth?e.linewidth-1:0)}s||(r+="x"===a?"top"===e.side?o*(e.showticklabels?1:0):o*(e.showticklabels?1.5:.5):"right"===e.side?o*(e.showticklabels?1:.5):o*(e.showticklabels?.5:0))}var c,f,p,d,g=B.getPxPosition(t,e);"x"===a?(f=e._offset+e._length/2,p="top"===e.side?g-r:g+r):(p=e._offset+e._length/2,f="right"===e.side?g+r:g-r,c={rotate:"-90",offset:0});if("multicategory"!==e.type){var m=e._selections[e._id+"tick"];if(d={selection:m,side:e.side},m&&m.node()&&m.node().parentNode){var v=h.getTranslate(m.node().parentNode);d.offsetLeft=v.x,d.offsetTop=v.y}e.title.hasOwnProperty("standoff")&&(d.pad=0)}return u.draw(t,i+"title",{propContainer:e,propName:e._name+".title.text",placeholder:n._dfltTitle[a],avoid:d,transform:c,attributes:{x:f,y:p,"text-anchor":"middle"}})}(t,e)})),s.syncOrAsync(Z)}}function Q(t){var r=p+(t||"tick");return w[r]||(w[r]=function(t,e){var r,n,i,a;t._selections[e].size()?(r=1/0,n=-1/0,i=1/0,a=-1/0,t._selections[e].each((function(){var t=dt(this),e=h.bBox(t.node().parentNode);r=Math.min(r,e.top),n=Math.max(n,e.bottom),i=Math.min(i,e.left),a=Math.max(a,e.right)}))):(r=0,n=0,i=0,a=0);return{top:r,bottom:n,left:i,right:a,height:n-r,width:a-i}}(e,r)),w[r]}},B.getTickSigns=function(t){var e=t._id.charAt(0),r={x:"top",y:"right"}[e],n=t.side===r?1:-1,i=[-1,1,n,-n];return"inside"!==t.ticks==("x"===e)&&(i=i.map((function(t){return-t}))),t.side&&i.push({l:-1,t:-1,r:1,b:1}[t.side.charAt(0)]),i},B.makeTransTickFn=function(t){return"x"===t._id.charAt(0)?function(e){return l(t._offset+t.l2p(e.x),0)}:function(e){return l(0,t._offset+t.l2p(e.x))}},B.makeTransTickLabelFn=function(t){var e=function(t){var e=t.ticklabelposition||"",r=function(t){return-1!==e.indexOf(t)},n=r("top"),i=r("left"),a=r("right"),o=r("bottom"),s=r("inside"),l=o||i||n||a;if(!l&&!s)return[0,0];var c=t.side,u=l?(t.tickwidth||0)/2:0,f=3,h=t.tickfont?t.tickfont.size:12;(o||n)&&(u+=h*D,f+=(t.linewidth||0)/2);(i||a)&&(u+=(t.linewidth||0)/2,f+=3);s&&"top"===c&&(f-=h*(1-D));(i||n)&&(u=-u);"bottom"!==c&&"right"!==c||(f=-f);return[l?u:0,s?f:0]}(t),r=e[0],n=e[1];return"x"===t._id.charAt(0)?function(e){return l(r+t._offset+t.l2p(ut(e)),n)}:function(e){return l(n,r+t._offset+t.l2p(ut(e)))}},B.makeTickPath=function(t,e,r,n){n=void 0!==n?n:t.ticklen;var i=t._id.charAt(0),a=(t.linewidth||1)/2;return"x"===i?"M0,"+(e+a*r)+"v"+n*r:"M"+(e+a*r)+",0h"+n*r},B.makeLabelFns=function(t,e,r){var n=t.ticklabelposition||"",a=function(t){return-1!==n.indexOf(t)},o=a("top"),l=a("left"),c=a("right"),u=a("bottom")||l||o||c,f=a("inside"),h="inside"===n&&"inside"===t.ticks||!f&&"outside"===t.ticks&&"boundaries"!==t.tickson,p=0,d=0,g=h?t.ticklen:0;if(f?g*=-1:u&&(g=0),h&&(p+=g,r)){var m=s.deg2rad(r);p=g*Math.cos(m)+1,d=g*Math.sin(m)}t.showticklabels&&(h||t.showline)&&(p+=.2*t.tickfont.size);var v,y,x,b,_,w={labelStandoff:p+=(t.linewidth||1)/2*(f?-1:1),labelShift:d},T=0,k=t.side,M=t._id.charAt(0),A=t.tickangle;if("x"===M)b=(_=!f&&"bottom"===k||f&&"top"===k)?1:-1,f&&(b*=-1),v=d*b,y=e+p*b,x=_?1:-.2,90===Math.abs(A)&&(f?x+=O:x=-90===A&&"bottom"===k?D:90===A&&"top"===k?O:.5,T=O/2*(A/90)),w.xFn=function(t){return t.dx+v+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*x},w.anchorFn=function(t,e){if(u){if(l)return"end";if(c)return"start"}return i(e)&&0!==e&&180!==e?e*b<0!==f?"end":"start":"middle"},w.heightFn=function(e,r,n){return r<-60||r>60?-.5*n:"top"===t.side!==f?-n:0};else if("y"===M){if(b=(_=!f&&"left"===k||f&&"right"===k)?1:-1,f&&(b*=-1),v=p,y=d*b,x=0,f||90!==Math.abs(A)||(x=-90===A&&"left"===k||90===A&&"right"===k?D:.5),f){var S=i(A)?+A:0;if(0!==S){var E=s.deg2rad(S);T=Math.abs(Math.sin(E))*D*b,x=0}}w.xFn=function(t){return t.dx+e-(v+t.fontSize*x)*b+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*O},w.anchorFn=function(t,e){return i(e)&&90===Math.abs(e)?"middle":_?"end":"start"},w.heightFn=function(e,r,n){return"right"===t.side&&(r*=-1),r<-30?-n:r<30?-.5*n:0}}return w},B.drawTicks=function(t,e,r){r=r||{};var n=e._id+"tick",i=r.vals;"period"===e.ticklabelmode&&(i=i.slice()).shift();var a=r.layer.selectAll("path."+n).data(e.ticks?i:[],ft);a.exit().remove(),a.enter().append("path").classed(n,1).classed("ticks",1).classed("crisp",!1!==r.crisp).call(f.stroke,e.tickcolor).style("stroke-width",h.crispRound(t,e.tickwidth,1)+"px").attr("d",r.path),a.attr("transform",r.transFn)},B.drawGrid=function(t,e,r){r=r||{};var n=e._id+"grid",i=r.vals,a=r.counterAxis;if(!1===e.showgrid)i=[];else if(a&&B.shouldShowZeroLine(t,e,a))for(var o="array"===e.tickmode,s=0;so||i.lefto||i.top+(e.tickangle?0:t.fontSize/4)1)for(n=1;n2*o}(i,e))return"date";var m="strict"!==r.autotypenumbers;return function(t,e){for(var r=t.length,n=f(r),i=0,o=0,s={},u=0;u2*i}(i,m)?"category":function(t,e){for(var r=t.length,n=0;n=2){var l,c,u="";if(2===o.length)for(l=0;l<2;l++)if(c=y(o[l])){u=d;break}var f=i("pattern",u);if(f===d)for(l=0;l<2;l++)(c=y(o[l]))&&(e.bounds[l]=o[l]=c-1);if(f)for(l=0;l<2;l++)switch(c=o[l],f){case d:if(!n(c))return void(e.enabled=!1);if((c=+c)!==Math.floor(c)||c<0||c>=7)return void(e.enabled=!1);e.bounds[l]=o[l]=c;break;case g:if(!n(c))return void(e.enabled=!1);if((c=+c)<0||c>24)return void(e.enabled=!1);e.bounds[l]=o[l]=c}if(!1===r.autorange){var h=r.range;if(h[0]h[1])return void(e.enabled=!1)}else if(o[0]>h[0]&&o[1]<h[1])return void(e.enabled=!1)}}else{var p=i("values");if(!p||!p.length)return void(e.enabled=!1);i("dvalue")}}}e.exports=function(t,e,r,n,g){var v,y=n.letter,x=n.font||{},b=n.splomStash||{},_=r("visible",!n.visibleDflt),w=e._template||{},T=e.type||w.type||"-";"date"===T&&(i.getComponentMethod("calendars","handleDefaults")(t,e,"calendar",n.calendar),n.noTicklabelmode||(v=r("ticklabelmode")));n.noTicklabelposition&&"multicategory"!==T||a.coerce(t,e,{ticklabelposition:{valType:"enumerated",dflt:"outside",values:"period"===v?["outside","inside"]:"x"===y?["outside","inside","outside left","inside left","outside right","inside right"]:["outside","inside","outside top","inside top","outside bottom","inside bottom"]}},"ticklabelposition"),p(e,g);var k=!e.isValidRange(t.range);k&&n.reverseDflt&&(k="reversed"),!r("autorange",k)||"linear"!==T&&"-"!==T||r("rangemode"),r("range"),e.cleanRange(),f(t,e,r,n),"category"===T||n.noHover||r("hoverformat");var M=r("color"),A=M!==s.color.dflt?M:x.color,S=b.label||g._dfltTitle[y];if(u(t,e,r,T,n,{pass:1}),!_)return e;r("title.text",S),a.coerceFont(r,"title.font",{family:x.family,size:Math.round(1.2*x.size),color:A}),l(t,e,r,T),u(t,e,r,T,n,{pass:2}),c(t,e,r,n),h(t,e,r,{dfltColor:M,bgColor:n.bgColor,showGrid:n.showGrid,attributes:s}),(e.showline||e.ticks)&&r("mirror"),n.automargin&&r("automargin");var E,C="multicategory"===T;n.noTickson||"category"!==T&&!C||!e.ticks&&!e.showgrid||(C&&(E="boundaries"),"boundaries"===r("tickson",E)&&delete e.ticklabelposition);C&&(r("showdividers")&&(r("dividercolor"),r("dividerwidth")));if("date"===T)if(o(t,e,{name:"rangebreaks",inclusionAttr:"enabled",handleItemDefaults:m}),e.rangebreaks.length){for(var L=0;L<e.rangebreaks.length;L++)if(e.rangebreaks[L].pattern===d){e._hasDayOfWeekBreaks=!0;break}if(p(e,g),g._has("scattergl")||g._has("splom"))for(var I=0;I<n.data.length;I++){var P=n.data[I];"scattergl"!==P.type&&"splom"!==P.type||(P.visible=!1,a.warn(P.type+" traces do not work on axes with rangebreaks. Setting trace "+P.index+" to `visible: false`."))}}else delete e.rangebreaks;return e};var v={sun:1,mon:2,tue:3,wed:4,thu:5,fri:6,sat:7};function y(t){if("string"==typeof t)return v[t.substr(0,3).toLowerCase()]}},{"../../lib":778,"../../registry":911,"../array_container_defaults":823,"./category_order_defaults":832,"./constants":834,"./layout_attributes":842,"./line_grid_defaults":844,"./set_convert":848,"./tick_label_defaults":849,"./tick_mark_defaults":850,"./tick_value_defaults":851,"fast-isnumeric":241}],831:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("./constants");function a(t,e){if(e&&e.length)for(var r=0;rn?1:-1:+(t.substr(1)||1)-+(e.substr(1)||1)},r.ref2id=function(t){return!!/^[xyz]/.test(t)&&t.split(" ")[0]},r.isLinked=function(t,e){return a(e,t._axisMatchGroups)||a(e,t._axisConstraintGroups)}},{"../../registry":911,"./constants":834}],832:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){if("category"===e.type){var i,a=t.categoryarray,o=Array.isArray(a)&&a.length>0;o&&(i="array");var s,l=r("categoryorder",i);"array"===l&&(s=r("categoryarray")),o||"array"!==l||(l=e.categoryorder="trace"),"trace"===l?e._initialCategories=[]:"array"===l?e._initialCategories=s.slice():(s=function(t,e){var r,n,i,a=e.dataAttr||t._id.charAt(0),o={};if(e.axData)r=e.axData;else for(r=[],n=0;n<e.data.length;n++){var s=e.data[n];s[a+"axis"]===t._id&&r.push(s)}for(n=0;n<r.length;n++){var l=r[n][a];for(i=0;i<l.length;i++){var c=l[i];null!=c&&(o[c]=1)}}return Object.keys(o)}(e,n).sort(),"category ascending"===l?e._initialCategories=s:"category descending"===l&&(e._initialCategories=s.reverse()))}}},{}],833:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../constants/numerical"),o=a.ONEDAY,s=a.ONEWEEK;r.dtick=function(t,e){var r="log"===e,i="date"===e,a="category"===e,s=i?o:1;if(!t)return s;if(n(t))return(t=Number(t))<=0?s:a?Math.max(1,Math.round(t)):i?Math.max(.1,t):t;if("string"!=typeof t||!i&&!r)return s;var l=t.charAt(0),c=t.substr(1);return(c=n(c)?Number(c):0)<=0||!(i&&"M"===l&&c===Math.round(c)||r&&"L"===l||r&&"D"===l&&(1===c||2===c))?s:t},r.tick0=function(t,e,r,a){return"date"===e?i.cleanDate(t,i.dateTick0(r,a%s==0?1:0)):"D1"!==a&&"D2"!==a?n(t)?Number(t):0:void 0}},{"../../constants/numerical":753,"../../lib":778,"fast-isnumeric":241}],834:[function(t,e,r){"use strict";var n=t("../../lib/regex").counter;e.exports={idRegex:{x:n("x","( domain)?"),y:n("y","( domain)?")},attrRegex:n("[xy]axis"),xAxisMatch:n("xaxis"),yAxisMatch:n("yaxis"),AX_ID_PATTERN:/^[xyz][0-9]*( domain)?$/,AX_NAME_PATTERN:/^[xyz]axis[0-9]*$/,SUBPLOT_PATTERN:/^x([0-9]*)y([0-9]*)$/,HOUR_PATTERN:"hour",WEEKDAY_PATTERN:"day of week",MINDRAG:8,MINSELECT:12,MINZOOM:20,DRAGGERSIZE:20,BENDPX:1.5,REDRAWDELAY:50,SELECTDELAY:100,SELECTID:"-select",DFLTRANGEX:[-1,6],DFLTRANGEY:[-1,4],traceLayerClasses:["imagelayer","heatmaplayer","contourcarpetlayer","contourlayer","funnellayer","waterfalllayer","barlayer","carpetlayer","violinlayer","boxlayer","ohlclayer","scattercarpetlayer","scatterlayer"],clipOnAxisFalseQuery:[".scatterlayer",".barlayer",".funnellayer",".waterfalllayer"],layerValue2layerClass:{"above traces":"above","below traces":"below"}}},{"../../lib/regex":795}],835:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./autorange"),a=t("./axis_ids").id2name,o=t("./layout_attributes"),s=t("./scale_zoom"),l=t("./set_convert"),c=t("../../constants/numerical").ALMOST_EQUAL,u=t("../../constants/alignment").FROM_BL;function f(t,e,r){var i=r.axIds,s=r.layoutOut,l=r.hasImage,c=s._axisConstraintGroups,u=s._axisMatchGroups,f=e._id,g=f.charAt(0),m=((s._splomAxes||{})[g]||{})[f]||{},v=e._id,y="x"===v.charAt(0);function x(r,i){return n.coerce(t,e,o,r,i)}e._matchGroup=null,e._constraintGroup=null,x("constrain",l?"domain":"range"),n.coerce(t,e,{constraintoward:{valType:"enumerated",values:y?["left","center","right"]:["bottom","middle","top"],dflt:y?"center":"middle"}},"constraintoward");var b,_,w=e.type,T=[];for(b=0;b<i.length;b++){if((_=i[b])!==v)s[a(_)].type===w&&T.push(_)}var k=p(c,v);if(k){var M=[];for(b=0;b<T.length;b++)k[_=T[b]]||M.push(_);T=M}var A,S,E=T.length;E&&(t.matches||m.matches)&&(A=n.coerce(t,e,{matches:{valType:"enumerated",values:T,dflt:-1!==T.indexOf(m.matches)?m.matches:void 0}},"matches"));var C=l&&!y?e.anchor:void 0;if(E&&!A&&(t.scaleanchor||C)&&(S=n.coerce(t,e,{scaleanchor:{valType:"enumerated",values:T}},"scaleanchor",C)),A){e._matchGroup=d(u,v,A,1);var L=s[a(A)],I=h(s,e)/h(s,L);y!==("x"===A.charAt(0))&&(I=(y?"x":"y")+I),d(c,v,A,I)}else t.matches&&-1!==i.indexOf(t.matches)&&n.warn("ignored "+e._name+'.matches: "'+t.matches+'" to avoid an infinite loop');if(S){var P=x("scaleratio");P||(P=e.scaleratio=1),d(c,v,S,P)}else t.scaleanchor&&-1!==i.indexOf(t.scaleanchor)&&n.warn("ignored "+e._name+'.scaleanchor: "'+t.scaleanchor+'" to avoid either an infinite loop and possibly inconsistent scaleratios, or because this axis declares a *matches* constraint.')}function h(t,e){var r=e.domain;return r||(r=t[a(e.overlaying)].domain),r[1]-r[0]}function p(t,e){for(var r=0;r<t.length;r++)if(t[r][e])return t[r];return null}function d(t,e,r,n){var i,a,o,s,l,c=p(t,e);null===c?((c={})[e]=1,l=t.length,t.push(c)):l=t.indexOf(c);var u=Object.keys(c);for(i=0;i<t.length;i++)if(o=t[i],i!==l&&o[r]){var f=o[r];for(a=0;a<u.length;a++)o[s=u[a]]=g(f,g(n,c[s]));return void t.splice(l,1)}if(1!==n)for(a=0;a<u.length;a++){var h=u[a];c[h]=g(n,c[h])}c[r]=1}function g(t,e){var r,n,i="",a="";"string"==typeof t&&(r=(i=t.match(/^[xy]*/)[0]).length,t=+t.substr(r)),"string"==typeof e&&(n=(a=e.match(/^[xy]*/)[0]).length,e=+e.substr(n));var o=t*e;return r||n?r&&n&&i.charAt(0)!==a.charAt(0)?r===n?o:(r>n?i.substr(n):a.substr(r))+o:i+a+t*e:o}function m(t,e){for(var r=e._size,n=r.h/r.w,i={},a=Object.keys(t),o=0;oc*x)||T)for(r=0;rz&&FI&&(I=F);h/=(I-L)/(2*P),L=l.l2r(L),I=l.l2r(I),l.range=l._input.range=S=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function B(t,e,r,n,i){return t.append("path").attr("class","zoombox").style({fill:e>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("transform",l(r,n)).attr("d",i+"Z")}function N(t,e,r){return t.append("path").attr("class","zoombox-corners").style({fill:u.background,stroke:u.defaultLine,"stroke-width":1,opacity:0}).attr("transform",l(e,r)).attr("d","M0,0Z")}function j(t,e,r,n,i,a){t.attr("d",n+"M"+r.l+","+r.t+"v"+r.h+"h"+r.w+"v-"+r.h+"h-"+r.w+"Z"),U(t,e,i,a)}function U(t,e,r,n){r||(t.transition().style("fill",n>.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),e.transition().style("opacity",1).duration(200))}function V(t){n.select(t).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}function q(t){I&&t.data&&t._context.showTips&&(s.notifier(s._(t,"Double-click to zoom back out"),"long"),I=!1)}function H(t){var e=Math.floor(Math.min(t.b-t.t,t.r-t.l,L)/2);return"M"+(t.l-3.5)+","+(t.t-.5+e)+"h3v"+-e+"h"+e+"v-3h-"+(e+3)+"ZM"+(t.r+3.5)+","+(t.t-.5+e)+"h-3v"+-e+"h"+-e+"v-3h"+(e+3)+"ZM"+(t.r+3.5)+","+(t.b+.5-e)+"h-3v"+e+"h"+-e+"v3h"+(e+3)+"ZM"+(t.l-3.5)+","+(t.b+.5-e)+"h3v"+e+"h"+e+"v3h-"+(e+3)+"Z"}function G(t,e,r,n,i){for(var a,o,l,c,u=!1,f={},h={},p=(i||{}).xaHash,d=(i||{}).yaHash,g=0;g=0)i._fullLayout._deactivateShape(i);else{var a=i._fullLayout.clickmode;if(V(i),2!==t||mt||qt(),gt)a.indexOf("select")>-1&&A(r,i,Z,J,e.id,Lt),a.indexOf("event")>-1&&h.click(i,r,e.id);else if(1===t&&mt){var s=d?P:I,l="s"===d||"w"===m?0:1,u=s._name+".range["+l+"]",f=function(t,e){var r,i=t.range[e],a=Math.abs(i-t.range[1-e]);return"date"===t.type?i:"log"===t.type?(r=Math.ceil(Math.max(0,-Math.log(a)/Math.LN10))+3,n.format("."+r+"g")(Math.pow(10,i))):(r=Math.floor(Math.log(Math.abs(i))/Math.LN10)-Math.floor(Math.log(a)/Math.LN10)+4,n.format("."+String(r)+"g")(i))}(s,l),p="left",g="middle";if(s.fixedrange)return;d?(g="n"===d?"top":"bottom","right"===s.side&&(p="right")):"e"===m&&(p="right"),i._context.showAxisRangeEntryBoxes&&n.select(xt).call(c.makeEditable,{gd:i,immediate:!0,background:i._fullLayout.paper_bgcolor,text:String(f),fill:s.tickfont?s.tickfont.color:"#444",horizontalAlign:p,verticalAlign:g}).on("edit",(function(t){var e=s.d2r(t);void 0!==e&&o.call("_guiRelayout",i,u,e)}))}}}function zt(e,r){if(t._transitioningWithDuration)return!1;var n=Math.max(0,Math.min($,ht*e+bt)),i=Math.max(0,Math.min(tt,pt*r+_t)),a=Math.abs(n-bt),o=Math.abs(i-_t);function s(){At="",wt.r=wt.l,wt.t=wt.b,Et.attr("d","M0,0Z")}if(wt.l=Math.min(bt,n),wt.r=Math.max(bt,n),wt.t=Math.min(_t,i),wt.b=Math.max(_t,i),et.isSubplotConstrained)a>L||o>L?(At="xy",a/$>o/tt?(o=a*tt/$,_t>i?wt.t=_t-o:wt.b=_t+o):(a=o*$/tt,bt>n?wt.l=bt-a:wt.r=bt+a),Et.attr("d",H(wt))):s();else if(rt.isSubplotConstrained)if(a>L||o>L){At="xy";var l=Math.min(wt.l/$,(tt-wt.b)/tt),c=Math.max(wt.r/$,(tt-wt.t)/tt);wt.l=l*$,wt.r=c*$,wt.b=(1-l)*tt,wt.t=(1-c)*tt,Et.attr("d",H(wt))}else s();else!it||o0){var u;if(rt.isSubplotConstrained||!nt&&1===it.length){for(u=0;u<Z.length;u++)Z[u].range=Z[u]._r.slice(),S(Z[u],1-r/tt);o=(e=r*$/tt)/2}if(rt.isSubplotConstrained||!it&&1===nt.length){for(u=0;u<J.length;u++)J[u].range=J[u]._r.slice(),S(J[u],1-e/$);s=(r=e*tt/$)/2}}rt.isSubplotConstrained&&it||Ut("x"),rt.isSubplotConstrained&&nt||Ut("y");var f=$-e,h=tt-r;!rt.isSubplotConstrained||nt&&it||(nt?(s=o?0:e*tt/$,h=f*tt/$):(o=s?0:r*$/tt,f=h*$/tt)),Gt([o,s,f,h]),Vt(),t.emit("plotly_relayouting",ft)}function p(t,e,r){for(var n,i,a=1-e,o=0;o<t.length;o++){var s=t[o];if(!s.fixedrange){n=s,i=s._rl[a]+(s._rl[e]-s._rl[a])/F(r/s._length);var l=s.l2r(i);!1!==l&&void 0!==l&&(s.range[e]=l)}}return n._length*(n._rl[e]-i)/(n._rl[e]-n._rl[a])}}function Ut(t,e){for(var r=rt.isSubplotConstrained?{x:J,y:Z}[t]:rt[t+"axes"],n=rt.isSubplotConstrained?{x:Z,y:J}[t]:[],i=0;i<r.length;i++){var a=r[i],o=a._id,s=rt.xLinks[o]||rt.yLinks[o],l=n[0]||U[s]||X[s];l&&(e?(e[a._name+".range[0]"]=e[l._name+".range[0]"],e[a._name+".range[1]"]=e[l._name+".range[1]"]):a.range=l.range.slice())}}function Vt(){var e,r=[];function n(t){for(e=0;e<t.length;e++)t[e].fixedrange||r.push(t[e]._id)}for(ot&&(n(Z),n(et.xaxes),n(rt.xaxes)),st&&(n(J),n(et.yaxes),n(rt.yaxes)),ft={},e=0;e<r.length;e++){var i=r[e],a=T(t,i);p.drawOne(t,a,{skipTitle:!0}),ft[a._name+".range[0]"]=a.range[0],ft[a._name+".range[1]"]=a.range[1]}p.redrawComponents(t,r)}function qt(){if(!t._transitioningWithDuration){var e=t._context.doubleClick,r=[];nt&&(r=r.concat(Z)),it&&(r=r.concat(J)),rt.xaxes&&(r=r.concat(rt.xaxes)),rt.yaxes&&(r=r.concat(rt.yaxes));var n,i,a,s={};if("reset+autosize"===e)for(e="autosize",i=0;i<r.length;i++)if((n=r[i])._rangeInitial&&(n.range[0]!==n._rangeInitial[0]||n.range[1]!==n._rangeInitial[1])||!n._rangeInitial&&!n.autorange){e="reset";break}if("autosize"===e)for(i=0;i<r.length;i++)(n=r[i]).fixedrange||(s[n._name+".autorange"]=!0);else if("reset"===e)for((nt||et.isSubplotConstrained)&&(r=r.concat(et.xaxes)),it&&!et.isSubplotConstrained&&(r=r.concat(et.yaxes)),et.isSubplotConstrained&&(nt?it||(r=r.concat(J)):r=r.concat(Z)),i=0;i<r.length;i++)(n=r[i]).fixedrange||(n._rangeInitial?(a=n._rangeInitial,s[n._name+".range[0]"]=a[0],s[n._name+".range[1]"]=a[1]):s[n._name+".autorange"]=!0);t.emit("plotly_doubleclick",null),o.call("_guiRelayout",t,s)}}function Ht(){Gt([0,0,$,tt]),s.syncOrAsync([w.previousPromises,function(){t._fullLayout._replotting=!1,o.call("_guiRelayout",t,ft)}],t)}function Gt(e){var r,n,i,a,l=t._fullLayout,c=l._plots,u=l._subplots.cartesian;if(ct&&o.subplotsRegistry.splom.drag(t),lt)for(r=0;r<u.length;r++)if(i=(n=c[u[r]]).xaxis,a=n.yaxis,n._scene){var h=s.simpleMap(i.range,i.r2l),p=s.simpleMap(a.range,a.r2l);n._scene.update({range:[h[0],p[0],h[1],p[1]]})}if((ct||lt)&&(b(t),_(t)),ut){var g=e[2]/I._length,v=e[3]/P._length;for(r=0;r<u.length;r++){i=(n=c[u[r]]).xaxis,a=n.yaxis;var y,x,w,T,k=(ot||rt.isSubplotConstrained)&&!i.fixedrange&&U[i._id],M=(st||rt.isSubplotConstrained)&&!a.fixedrange&&X[a._id];if(k?(y=g,w=m||rt.isSubplotConstrained?e[0]:Xt(i,y)):rt.xaHash[i._id]?(y=g,w=e[0]*i._length/I._length):rt.yaHash[i._id]?(y=v,w="ns"===it?-e[1]*i._length/P._length:Xt(i,y,{n:"top",s:"bottom"}[it])):w=Wt(i,y=Yt(i,g,v)),M?(x=v,T=d||rt.isSubplotConstrained?e[1]:Xt(a,x)):rt.yaHash[a._id]?(x=v,T=e[1]*a._length/P._length):rt.xaHash[a._id]?(x=g,T="ew"===nt?-e[0]*a._length/I._length:Xt(a,x,{e:"right",w:"left"}[nt])):T=Wt(a,x=Yt(a,g,v)),y||x){y||(y=1),x||(x=1);var A=i._offset-w/y,S=a._offset-T/x;n.clipRect.call(f.setTranslate,w,T).call(f.setScale,y,x),n.plot.call(f.setTranslate,A,S).call(f.setScale,1/y,1/x),y===n.xScaleFactor&&x===n.yScaleFactor||(f.setPointGroupScale(n.zoomScalePts,y,x),f.setTextPointsScale(n.zoomScaleTxt,y,x)),f.hideOutsideRangePoints(n.clipOnAxisFalseTraces,n),n.xScaleFactor=y,n.yScaleFactor=x}}}}function Yt(t,e,r){return t.fixedrange?0:ot&&et.xaHash[t._id]?e:st&&(et.isSubplotConstrained?et.xaHash:et.yaHash)[t._id]?r:0}function Wt(t,e){return e?(t.range=t._r.slice(),S(t,e),Xt(t,e)):0}function Xt(t,e,r){return t._length*(1-e)*x[r||t.constraintoward||"middle"]}return d.length*m.length!=1&&Y(xt,(function(e){if(t._context._scrollZoom.cartesian||t._fullLayout._enablescrollzoom){if(It(),t._transitioningWithDuration)return e.preventDefault(),void e.stopPropagation();vt(),clearTimeout(Ft);var r=-e.deltaY;if(isFinite(r)||(r=e.wheelDelta/10),isFinite(r)){var n,i=Math.exp(-Math.min(Math.max(r,-20),20)/200),a=Nt.draglayer.select(".nsewdrag").node().getBoundingClientRect(),o=(e.clientX-a.left)/a.width,l=(a.bottom-e.clientY)/a.height;if(ot){for(m||(o=.5),n=0;n<Z.length;n++)c(Z[n],o,i);Ut("x"),Rt[2]*=i,Rt[0]+=Rt[2]*o*(1/i-1)}if(st){for(d||(l=.5),n=0;n<J.length;n++)c(J[n],l,i);Ut("y"),Rt[3]*=i,Rt[1]+=Rt[3]*(1-l)*(1/i-1)}Gt(Rt),Vt(),t.emit("plotly_relayouting",ft),Ft=setTimeout((function(){Rt=[0,0,$,tt],Ht()}),Bt),e.preventDefault()}else s.log("Did not find wheel motion attributes: ",e)}function c(t,e,r){if(!t.fixedrange){var n=s.simpleMap(t.range,t.r2l),i=n[0]+(n[1]-n[0])*e;t.range=n.map((function(e){return t.l2r(i+(e-i)*r)}))}}})),xt},makeDragger:P,makeRectDragger:z,makeZoombox:B,makeCorners:N,updateZoombox:j,xyCorners:H,transitionZoombox:U,removeZoombox:V,showDoubleClickNotifier:q,attachWheelEventHandler:Y}},{"../../components/color":643,"../../components/dragelement":662,"../../components/dragelement/helpers":661,"../../components/drawing":665,"../../components/fx":683,"../../constants/alignment":745,"../../lib":778,"../../lib/clear_gl_canvases":762,"../../lib/setcursor":799,"../../lib/svg_text_utils":803,"../../plot_api/subroutines":818,"../../registry":911,"../plots":891,"./axes":828,"./axis_ids":831,"./constants":834,"./scale_zoom":846,"./select":847,d3:169,"has-passive-events":441,tinycolor2:576}],837:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/fx"),a=t("../../components/dragelement"),o=t("../../lib/setcursor"),s=t("./dragbox").makeDragBox,l=t("./constants").DRAGGERSIZE;r.initInteractions=function(t){var e=t._fullLayout;if(t._context.staticPlot)n.select(t).selectAll(".drag").remove();else if(e._has("cartesian")||e._has("splom")){Object.keys(e._plots||{}).sort((function(t,r){if((e._plots[t].mainplot&&!0)===(e._plots[r].mainplot&&!0)){var n=t.split("y"),i=r.split("y");return n[0]===i[0]?Number(n[1]||1)-Number(i[1]||1):Number(n[0]||1)-Number(i[0]||1)}return e._plots[t].mainplot?1:-1})).forEach((function(r){var n=e._plots[r],o=n.xaxis,c=n.yaxis;if(!n.mainplot){var u=s(t,n,o._offset,c._offset,o._length,c._length,"ns","ew");u.onmousemove=function(e){t._fullLayout._rehover=function(){t._fullLayout._hoversubplot===r&&t._fullLayout._plots[r]&&i.hover(t,e,r)},i.hover(t,e,r),t._fullLayout._lasthover=u,t._fullLayout._hoversubplot=r},u.onmouseout=function(e){t._dragging||(t._fullLayout._hoversubplot=null,a.unhover(t,e))},t._context.showAxisDragHandles&&(s(t,n,o._offset-l,c._offset-l,l,l,"n","w"),s(t,n,o._offset+o._length,c._offset-l,l,l,"n","e"),s(t,n,o._offset-l,c._offset+c._length,l,l,"s","w"),s(t,n,o._offset+o._length,c._offset+c._length,l,l,"s","e"))}if(t._context.showAxisDragHandles){if(r===o._mainSubplot){var f=o._mainLinePosition;"top"===o.side&&(f-=l),s(t,n,o._offset+.1*o._length,f,.8*o._length,l,"","ew"),s(t,n,o._offset,f,.1*o._length,l,"","w"),s(t,n,o._offset+.9*o._length,f,.1*o._length,l,"","e")}if(r===c._mainSubplot){var h=c._mainLinePosition;"right"!==c.side&&(h-=l),s(t,n,h,c._offset+.1*c._length,l,.8*c._length,"ns",""),s(t,n,h,c._offset+.9*c._length,l,.1*c._length,"s",""),s(t,n,h,c._offset,l,.1*c._length,"n","")}}}));var o=e._hoverlayer.node();o.onmousemove=function(r){r.target=t._fullLayout._lasthover,i.hover(t,r,e._hoversubplot)},o.onclick=function(e){e.target=t._fullLayout._lasthover,i.click(t,e)},o.onmousedown=function(e){t._fullLayout._lasthover.onmousedown(e)},r.updateFx(t)}},r.updateFx=function(t){var e=t._fullLayout,r="pan"===e.dragmode?"move":"crosshair";o(e._draggers,r)}},{"../../components/dragelement":662,"../../components/fx":683,"../../lib/setcursor":799,"./constants":834,"./dragbox":836,d3:169}],838:[function(t,e,r){"use strict";e.exports={clearOutlineControllers:function(t){var e=t._fullLayout._zoomlayer;e&&e.selectAll(".outline-controllers").remove()},clearSelect:function(t){var e=t._fullLayout._zoomlayer;e&&e.selectAll(".select-outline").remove(),t._fullLayout._drawing=!1}}},{}],839:[function(t,e,r){"use strict";var n=t("../../lib").strTranslate;function i(t,e){switch(t.type){case"log":return t.p2d(e);case"date":return t.p2r(e,0,t.calendar);default:return t.p2r(e)}}e.exports={p2r:i,r2p:function(t,e){switch(t.type){case"log":return t.d2p(e);case"date":return t.r2p(e,0,t.calendar);default:return t.r2p(e)}},axValue:function(t){var e="y"===t._id.charAt(0)?1:0;return function(r){return i(t,r[e])}},getTransform:function(t){return n(t.xaxis._offset,t.yaxis._offset)}}},{"../../lib":778}],840:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("./axis_ids");e.exports=function(t){return function(e,r){var o=e[t];if(Array.isArray(o))for(var s=n.subplotsRegistry.cartesian,l=s.idRegex,c=r._subplots,u=c.xaxis,f=c.yaxis,h=c.cartesian,p=r._has("cartesian")||r._has("gl2d"),d=0;d<o.length;d++){var g=o[d];if(i.isPlainObject(g)){var m=a.cleanId(g.xref,"x",!1),v=a.cleanId(g.yref,"y",!1),y=l.x.test(m),x=l.y.test(v);if(y||x){p||i.pushUnique(r._basePlotModules,s);var b=!1;y&&-1===u.indexOf(m)&&(u.push(m),b=!0),x&&-1===f.indexOf(v)&&(f.push(v),b=!0),b&&y&&x&&h.push(m+v)}}}}}},{"../../lib":778,"../../registry":911,"./axis_ids":831}],841:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../registry"),a=t("../../lib"),o=t("../plots"),s=t("../../components/drawing"),l=t("../get_data").getModuleCalcData,c=t("./axis_ids"),u=t("./constants"),f=t("../../constants/xmlns_namespaces"),h=a.ensureSingle;function p(t,e,r){return a.ensureSingle(t,e,r,(function(t){t.datum(r)}))}function d(t,e,r,a,o){for(var c,f,h,p=u.traceLayerClasses,d=t._fullLayout,g=d._modules,m=[],v=[],y=0;y<g.length;y++){var x=(c=g[y]).name,b=i.modules[x].categories;if(b.svg){var _=c.layerName||x+"layer",w=c.plot;h=(f=l(r,w))[0],r=f[1],h.length&&m.push({i:p.indexOf(_),className:_,plotMethod:w,cdModule:h}),b.zoomScale&&v.push("."+_)}}m.sort((function(t,e){return t.i-e.i}));var T=e.plot.selectAll("g.mlayer").data(m,(function(t){return t.className}));if(T.enter().append("g").attr("class",(function(t){return t.className})).classed("mlayer",!0).classed("rangeplot",e.isRangePlot),T.exit().remove(),T.order(),T.each((function(r){var i=n.select(this),l=r.className;r.plotMethod(t,e,r.cdModule,i,a,o),-1===u.clipOnAxisFalseQuery.indexOf("."+l)&&s.setClipUrl(i,e.layerClipId,t)})),d._has("scattergl")&&(c=i.getModule("scattergl"),h=l(r,c)[0],c.plot(t,e,h)),!t._context.staticPlot&&(e._hasClipOnAxisFalse&&(e.clipOnAxisFalseTraces=e.plot.selectAll(u.clipOnAxisFalseQuery.join(",")).selectAll(".trace")),v.length)){var k=e.plot.selectAll(v.join(",")).selectAll(".trace");e.zoomScalePts=k.selectAll("path.point"),e.zoomScaleTxt=k.selectAll(".textpoint")}}function g(t,e){var r=e.plotgroup,n=e.id,i=u.layerValue2layerClass[e.xaxis.layer],a=u.layerValue2layerClass[e.yaxis.layer],o=t._fullLayout._hasOnlyLargeSploms;if(e.mainplot){var s=e.mainplotinfo,l=s.plotgroup,f=n+"-x",d=n+"-y";e.gridlayer=s.gridlayer,e.zerolinelayer=s.zerolinelayer,h(s.overlinesBelow,"path",f),h(s.overlinesBelow,"path",d),h(s.overaxesBelow,"g",f),h(s.overaxesBelow,"g",d),e.plot=h(s.overplot,"g",n),h(s.overlinesAbove,"path",f),h(s.overlinesAbove,"path",d),h(s.overaxesAbove,"g",f),h(s.overaxesAbove,"g",d),e.xlines=l.select(".overlines-"+i).select("."+f),e.ylines=l.select(".overlines-"+a).select("."+d),e.xaxislayer=l.select(".overaxes-"+i).select("."+f),e.yaxislayer=l.select(".overaxes-"+a).select("."+d)}else if(o)e.xlines=h(r,"path","xlines-above"),e.ylines=h(r,"path","ylines-above"),e.xaxislayer=h(r,"g","xaxislayer-above"),e.yaxislayer=h(r,"g","yaxislayer-above");else{var g=h(r,"g","layer-subplot");e.shapelayer=h(g,"g","shapelayer"),e.imagelayer=h(g,"g","imagelayer"),e.gridlayer=h(r,"g","gridlayer"),e.zerolinelayer=h(r,"g","zerolinelayer"),h(r,"path","xlines-below"),h(r,"path","ylines-below"),e.overlinesBelow=h(r,"g","overlines-below"),h(r,"g","xaxislayer-below"),h(r,"g","yaxislayer-below"),e.overaxesBelow=h(r,"g","overaxes-below"),e.plot=h(r,"g","plot"),e.overplot=h(r,"g","overplot"),e.xlines=h(r,"path","xlines-above"),e.ylines=h(r,"path","ylines-above"),e.overlinesAbove=h(r,"g","overlines-above"),h(r,"g","xaxislayer-above"),h(r,"g","yaxislayer-above"),e.overaxesAbove=h(r,"g","overaxes-above"),e.xlines=r.select(".xlines-"+i),e.ylines=r.select(".ylines-"+a),e.xaxislayer=r.select(".xaxislayer-"+i),e.yaxislayer=r.select(".yaxislayer-"+a)}o||(p(e.gridlayer,"g",e.xaxis._id),p(e.gridlayer,"g",e.yaxis._id),e.gridlayer.selectAll("g").map((function(t){return t[0]})).sort(c.idSort)),e.xlines.style("fill","none").classed("crisp",!0),e.ylines.style("fill","none").classed("crisp",!0)}function m(t,e){if(t){var r={};for(var i in t.each((function(t){var i=t[0];n.select(this).remove(),v(i,e),r[i]=!0})),e._plots)for(var a=e._plots[i].overlays||[],o=0;o<a.length;o++){var s=a[o];r[s.id]&&s.plot.selectAll(".trace").remove()}}}function v(t,e){e._draggers.selectAll("g."+t).remove(),e._defs.select("#clip"+e._uid+t+"plot").remove()}r.name="cartesian",r.attr=["xaxis","yaxis"],r.idRoot=["x","y"],r.idRegex=u.idRegex,r.attrRegex=u.attrRegex,r.attributes=t("./attributes"),r.layoutAttributes=t("./layout_attributes"),r.supplyLayoutDefaults=t("./layout_defaults"),r.transitionAxes=t("./transition_axes"),r.finalizeSubplots=function(t,e){var r,n,i,o=e._subplots,s=o.xaxis,l=o.yaxis,f=o.cartesian,h=f.concat(o.gl2d||[]),p={},d={};for(r=0;r<h.length;r++){var g=h[r].split("y");p[g[0]]=1,d["y"+g[1]]=1}for(r=0;r<s.length;r++)p[n=s[r]]||(i=(t[c.id2name(n)]||{}).anchor,u.idRegex.y.test(i)||(i="y"),f.push(n+i),h.push(n+i),d[i]||(d[i]=1,a.pushUnique(l,i)));for(r=0;r<l.length;r++)d[i=l[r]]||(n=(t[c.id2name(i)]||{}).anchor,u.idRegex.x.test(n)||(n="x"),f.push(n+i),h.push(n+i),p[n]||(p[n]=1,a.pushUnique(s,n)));if(!h.length){for(var m in n="",i="",t){if(u.attrRegex.test(m))"x"===m.charAt(0)?(!n||+m.substr(5)<+n.substr(5))&&(n=m):(!i||+m.substr(5)<+i.substr(5))&&(i=m)}n=n?c.name2id(n):"x",i=i?c.name2id(i):"y",s.push(n),l.push(i),f.push(n+i)}},r.plot=function(t,e,r,n){var i,a=t._fullLayout,o=a._subplots.cartesian,s=t.calcdata;if(!Array.isArray(e))for(e=[],i=0;i<s.length;i++)e.push(i);for(i=0;i<o.length;i++){for(var l,c=o[i],u=a._plots[c],f=[],h=0;h<s.length;h++){var p=s[h],g=p[0].trace;g.xaxis+g.yaxis===c&&((-1!==e.indexOf(g.index)||g.carpet)&&(l&&l[0].trace.xaxis+l[0].trace.yaxis===c&&-1!==["tonextx","tonexty","tonext"].indexOf(g.fill)&&-1===f.indexOf(l)&&f.push(l),f.push(p)),l=p)}d(t,u,f,r,n)}},r.clean=function(t,e,r,n){var i,a,o,s=n._plots||{},l=e._plots||{},u=n._subplots||{};if(n._hasOnlyLargeSploms&&!e._hasOnlyLargeSploms)for(o in s)(i=s[o]).plotgroup&&i.plotgroup.remove();var f=n._has&&n._has("gl"),h=e._has&&e._has("gl");if(f&&!h)for(o in s)(i=s[o])._scene&&i._scene.destroy();if(u.xaxis&&u.yaxis){var p=c.listIds({_fullLayout:n});for(a=0;a<p.length;a++){var d=p[a];e[c.id2name(d)]||n._infolayer.selectAll(".g-"+d+"title").remove()}}var g=n._has&&n._has("cartesian"),y=e._has&&e._has("cartesian");if(g&&!y)m(n._cartesianlayer.selectAll(".subplot"),n),n._defs.selectAll(".axesclip").remove(),delete n._axisConstraintGroups,delete n._axisMatchGroups;else if(u.cartesian)for(a=0;a<u.cartesian.length;a++){var x=u.cartesian[a];if(!l[x]){var b="."+x+",."+x+"-x,."+x+"-y";n._cartesianlayer.selectAll(b).remove(),v(x,n)}}},r.drawFramework=function(t){var e=t._fullLayout,r=function(t){var e,r,n,i,a,o,s=t._fullLayout,l=s._subplots.cartesian,c=l.length,u=[],f=[];for(e=0;e<c;e++){n=l[e],i=s._plots[n],a=i.xaxis,o=i.yaxis;var h=a._mainAxis,p=o._mainAxis,d=h._id+p._id,g=s._plots[d];i.overlays=[],d!==n&&g?(i.mainplot=d,i.mainplotinfo=g,f.push(n)):(i.mainplot=void 0,i.mainplotinfo=void 0,u.push(n))}for(e=0;e<f.length;e++)n=f[e],(i=s._plots[n]).mainplotinfo.overlays.push(i);var m=u.concat(f),v=new Array(c);for(e=0;e<c;e++){n=m[e],i=s._plots[n],a=i.xaxis,o=i.yaxis;var y=[n,a.layer,o.layer,a.overlaying||"",o.overlaying||""];for(r=0;r<i.overlays.length;r++)y.push(i.overlays[r].id);v[e]=y}return v}(t),i=e._cartesianlayer.selectAll(".subplot").data(r,String);i.enter().append("g").attr("class",(function(t){return"subplot "+t[0]})),i.order(),i.exit().call(m,e),i.each((function(r){var i=r[0],a=e._plots[i];a.plotgroup=n.select(this),g(t,a),a.draglayer=h(e._draggers,"g",i)}))},r.rangePlot=function(t,e,r){g(t,e),d(t,e,r),o.style(t)},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(".svg-container");r.filter((function(t,e){return e===r.size()-1})).selectAll(".gl-canvas-context, .gl-canvas-focus").each((function(){var t=this.toDataURL("image/png");e.append("svg:image").attr({xmlns:f.svg,"xlink:href":t,preserveAspectRatio:"none",x:0,y:0,width:this.width,height:this.height})}))},r.updateFx=t("./graph_interact").updateFx},{"../../components/drawing":665,"../../constants/xmlns_namespaces":754,"../../lib":778,"../../registry":911,"../get_data":865,"../plots":891,"./attributes":826,"./axis_ids":831,"./constants":834,"./graph_interact":837,"./layout_attributes":842,"./layout_defaults":843,"./transition_axes":852,d3:169}],842:[function(t,e,r){"use strict";var n=t("../font_attributes"),i=t("../../components/color/attributes"),a=t("../../components/drawing/attributes").dash,o=t("../../lib/extend").extendFlat,s=t("../../plot_api/plot_template").templatedArray,l=(t("../../constants/docs").FORMAT_LINK,t("../../constants/docs").DATE_FORMAT_LINK,t("../../constants/numerical").ONEDAY),c=t("./constants"),u=c.HOUR_PATTERN,f=c.WEEKDAY_PATTERN;e.exports={visible:{valType:"boolean",editType:"plot"},color:{valType:"color",dflt:i.defaultLine,editType:"ticks"},title:{text:{valType:"string",editType:"ticks"},font:n({editType:"ticks"}),standoff:{valType:"number",min:0,editType:"ticks"},editType:"ticks"},type:{valType:"enumerated",values:["-","linear","log","date","category","multicategory"],dflt:"-",editType:"calc",_noTemplating:!0},autotypenumbers:{valType:"enumerated",values:["convert types","strict"],dflt:"convert types",editType:"calc"},autorange:{valType:"enumerated",values:[!0,!1,"reversed"],dflt:!0,editType:"axrange",impliedEdits:{"range[0]":void 0,"range[1]":void 0}},rangemode:{valType:"enumerated",values:["normal","tozero","nonnegative"],dflt:"normal",editType:"plot"},range:{valType:"info_array",items:[{valType:"any",editType:"axrange",impliedEdits:{"^autorange":!1},anim:!0},{valType:"any",editType:"axrange",impliedEdits:{"^autorange":!1},anim:!0}],editType:"axrange",impliedEdits:{autorange:!1},anim:!0},fixedrange:{valType:"boolean",dflt:!1,editType:"calc"},scaleanchor:{valType:"enumerated",values:[c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"plot"},scaleratio:{valType:"number",min:0,dflt:1,editType:"plot"},constrain:{valType:"enumerated",values:["range","domain"],editType:"plot"},constraintoward:{valType:"enumerated",values:["left","center","right","top","middle","bottom"],editType:"plot"},matches:{valType:"enumerated",values:[c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"calc"},rangebreaks:s("rangebreak",{enabled:{valType:"boolean",dflt:!0,editType:"calc"},bounds:{valType:"info_array",items:[{valType:"any",editType:"calc"},{valType:"any",editType:"calc"}],editType:"calc"},pattern:{valType:"enumerated",values:[f,u,""],editType:"calc"},values:{valType:"info_array",freeLength:!0,editType:"calc",items:{valType:"any",editType:"calc"}},dvalue:{valType:"number",editType:"calc",min:0,dflt:l},editType:"calc"}),tickmode:{valType:"enumerated",values:["auto","linear","array"],editType:"ticks",impliedEdits:{tick0:void 0,dtick:void 0}},nticks:{valType:"integer",min:0,dflt:0,editType:"ticks"},tick0:{valType:"any",editType:"ticks",impliedEdits:{tickmode:"linear"}},dtick:{valType:"any",editType:"ticks",impliedEdits:{tickmode:"linear"}},tickvals:{valType:"data_array",editType:"ticks"},ticktext:{valType:"data_array",editType:"ticks"},ticks:{valType:"enumerated",values:["outside","inside",""],editType:"ticks"},tickson:{valType:"enumerated",values:["labels","boundaries"],dflt:"labels",editType:"ticks"},ticklabelmode:{valType:"enumerated",values:["instant","period"],dflt:"instant",editType:"ticks"},ticklabelposition:{valType:"enumerated",values:["outside","inside","outside top","inside top","outside left","inside left","outside right","inside right","outside bottom","inside bottom"],dflt:"outside",editType:"calc"},mirror:{valType:"enumerated",values:[!0,"ticks",!1,"all","allticks"],dflt:!1,editType:"ticks+layoutstyle"},ticklen:{valType:"number",min:0,dflt:5,editType:"ticks"},tickwidth:{valType:"number",min:0,dflt:1,editType:"ticks"},tickcolor:{valType:"color",dflt:i.defaultLine,editType:"ticks"},showticklabels:{valType:"boolean",dflt:!0,editType:"ticks"},automargin:{valType:"boolean",dflt:!1,editType:"ticks"},showspikes:{valType:"boolean",dflt:!1,editType:"modebar"},spikecolor:{valType:"color",dflt:null,editType:"none"},spikethickness:{valType:"number",dflt:3,editType:"none"},spikedash:o({},a,{dflt:"dash",editType:"none"}),spikemode:{valType:"flaglist",flags:["toaxis","across","marker"],dflt:"toaxis",editType:"none"},spikesnap:{valType:"enumerated",values:["data","cursor","hovered data"],dflt:"data",editType:"none"},tickfont:n({editType:"ticks"}),tickangle:{valType:"angle",dflt:"auto",editType:"ticks"},tickprefix:{valType:"string",dflt:"",editType:"ticks"},showtickprefix:{valType:"enumerated",values:["all","first","last","none"],dflt:"all",editType:"ticks"},ticksuffix:{valType:"string",dflt:"",editType:"ticks"},showticksuffix:{valType:"enumerated",values:["all","first","last","none"],dflt:"all",editType:"ticks"},showexponent:{valType:"enumerated",values:["all","first","last","none"],dflt:"all",editType:"ticks"},exponentformat:{valType:"enumerated",values:["none","e","E","power","SI","B"],dflt:"B",editType:"ticks"},minexponent:{valType:"number",dflt:3,min:0,editType:"ticks"},separatethousands:{valType:"boolean",dflt:!1,editType:"ticks"},tickformat:{valType:"string",dflt:"",editType:"ticks"},tickformatstops:s("tickformatstop",{enabled:{valType:"boolean",dflt:!0,editType:"ticks"},dtickrange:{valType:"info_array",items:[{valType:"any",editType:"ticks"},{valType:"any",editType:"ticks"}],editType:"ticks"},value:{valType:"string",dflt:"",editType:"ticks"},editType:"ticks"}),hoverformat:{valType:"string",dflt:"",editType:"none"},showline:{valType:"boolean",dflt:!1,editType:"ticks+layoutstyle"},linecolor:{valType:"color",dflt:i.defaultLine,editType:"layoutstyle"},linewidth:{valType:"number",min:0,dflt:1,editType:"ticks+layoutstyle"},showgrid:{valType:"boolean",editType:"ticks"},gridcolor:{valType:"color",dflt:i.lightLine,editType:"ticks"},gridwidth:{valType:"number",min:0,dflt:1,editType:"ticks"},zeroline:{valType:"boolean",editType:"ticks"},zerolinecolor:{valType:"color",dflt:i.defaultLine,editType:"ticks"},zerolinewidth:{valType:"number",dflt:1,editType:"ticks"},showdividers:{valType:"boolean",dflt:!0,editType:"ticks"},dividercolor:{valType:"color",dflt:i.defaultLine,editType:"ticks"},dividerwidth:{valType:"number",dflt:1,editType:"ticks"},anchor:{valType:"enumerated",values:["free",c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"plot"},side:{valType:"enumerated",values:["top","bottom","left","right"],editType:"plot"},overlaying:{valType:"enumerated",values:["free",c.idRegex.x.toString(),c.idRegex.y.toString()],editType:"plot"},layer:{valType:"enumerated",values:["above traces","below traces"],dflt:"above traces",editType:"plot"},domain:{valType:"info_array",items:[{valType:"number",min:0,max:1,editType:"plot"},{valType:"number",min:0,max:1,editType:"plot"}],dflt:[0,1],editType:"plot"},position:{valType:"number",min:0,max:1,dflt:0,editType:"plot"},categoryorder:{valType:"enumerated",values:["trace","category ascending","category descending","array","total ascending","total descending","min ascending","min descending","max ascending","max descending","sum ascending","sum descending","mean ascending","mean descending","median ascending","median descending"],dflt:"trace",editType:"calc"},categoryarray:{valType:"data_array",editType:"calc"},uirevision:{valType:"any",editType:"none"},editType:"calc",_deprecated:{autotick:{valType:"boolean",editType:"ticks"},title:{valType:"string",editType:"ticks"},titlefont:n({editType:"ticks"})}}},{"../../components/color/attributes":642,"../../components/drawing/attributes":664,"../../constants/docs":748,"../../constants/numerical":753,"../../lib/extend":768,"../../plot_api/plot_template":817,"../font_attributes":856,"./constants":834}],843:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/color"),a=t("../../components/fx/helpers").isUnifiedHover,o=t("../../components/fx/hovermode_defaults"),s=t("../../plot_api/plot_template"),l=t("../layout_attributes"),c=t("./layout_attributes"),u=t("./type_defaults"),f=t("./axis_defaults"),h=t("./constraints"),p=t("./position_defaults"),d=t("./axis_ids"),g=d.id2name,m=d.name2id,v=t("./constants").AX_ID_PATTERN,y=t("../../registry"),x=y.traceIs,b=y.getComponentMethod;function _(t,e,r){Array.isArray(t[e])?t[e].push(r):t[e]=[r]}e.exports=function(t,e,r){var y,w,T=e.autotypenumbers,k={},M={},A={},S={},E={},C={},L={},I={},P={},z={};for(y=0;y<r.length;y++){var O=r[y];if(x(O,"cartesian")||x(O,"gl2d")){var D,R;if(O.xaxis)D=g(O.xaxis),_(k,D,O);else if(O.xaxes)for(w=0;w<O.xaxes.length;w++)_(k,g(O.xaxes[w]),O);if(O.yaxis)R=g(O.yaxis),_(k,R,O);else if(O.yaxes)for(w=0;w<O.yaxes.length;w++)_(k,g(O.yaxes[w]),O);if("funnel"===O.type?"h"===O.orientation?(D&&(M[D]=!0),R&&(L[R]=!0)):R&&(A[R]=!0):"image"===O.type?(R&&(I[R]=!0),D&&(I[D]=!0)):(R&&(E[R]=!0,C[R]=!0),x(O,"carpet")&&("carpet"!==O.type||O._cheater)||D&&(S[D]=!0)),"carpet"===O.type&&O._cheater&&D&&(M[D]=!0),x(O,"2dMap")&&(P[D]=!0,P[R]=!0),x(O,"oriented"))z["h"===O.orientation?R:D]=!0}}var F=e._subplots,B=F.xaxis,N=F.yaxis,j=n.simpleMap(B,g),U=n.simpleMap(N,g),V=j.concat(U),q=i.background;B.length&&N.length&&(q=n.coerce(t,e,l,"plot_bgcolor"));var H,G,Y,W,X,Z=i.combine(q,e.paper_bgcolor);function J(){var t=k[H]||[];X._traceIndices=t.map((function(t){return t._expandedIndex})),X._annIndices=[],X._shapeIndices=[],X._imgIndices=[],X._subplotsWith=[],X._counterAxes=[],X._name=X._attr=H,X._id=G}function K(t,e){return n.coerce(W,X,c,t,e)}function Q(t,e){return n.coerce2(W,X,c,t,e)}function $(t){return"x"===t?N:B}function tt(e,r){for(var n="x"===e?j:U,i=[],a=0;a<n.length;a++){var o=n[a];o===r||(t[o]||{}).overlaying||i.push(m(o))}return i}var et={x:$("x"),y:$("y")},rt=et.x.concat(et.y),nt={},it=[];function at(){var t=W.matches;v.test(t)&&-1===rt.indexOf(t)&&(nt[t]=W.type,it=Object.keys(nt))}var ot=o(t,e,r),st=a(ot);for(y=0;y<V.length;y++){H=V[y],G=m(H),Y=H.charAt(0),n.isPlainObject(t[H])||(t[H]={}),W=t[H],X=s.newContainer(e,H,Y+"axis"),J();var lt="x"===Y&&!S[H]&&M[H]||"y"===Y&&!E[H]&&A[H],ct="y"===Y&&(!C[H]&&L[H]||I[H]),ut={letter:Y,font:e.font,outerTicks:P[H],showGrid:!z[H],data:k[H]||[],bgColor:Z,calendar:e.calendar,automargin:!0,visibleDflt:lt,reverseDflt:ct,autotypenumbersDflt:T,splomStash:((e._splomAxes||{})[Y]||{})[G]};K("uirevision",e.uirevision),u(W,X,K,ut),f(W,X,K,ut,e);var ft=st&&Y===ot.charAt(0),ht=Q("spikecolor",st?X.color:void 0),pt=Q("spikethickness",st?1.5:void 0),dt=Q("spikedash",st?"dot":void 0),gt=Q("spikemode",st?"across":void 0),mt=Q("spikesnap",st?"hovered data":void 0);K("showspikes",!!(ft||ht||pt||dt||gt||mt))||(delete X.spikecolor,delete X.spikethickness,delete X.spikedash,delete X.spikemode,delete X.spikesnap),p(W,X,K,{letter:Y,counterAxes:et[Y],overlayableAxes:tt(Y,H),grid:e.grid}),K("title.standoff"),at(),X._input=W}for(y=0;y<it.length;){G=it[y++],Y=(H=g(G)).charAt(0),n.isPlainObject(t[H])||(t[H]={}),W=t[H],X=s.newContainer(e,H,Y+"axis"),J();var vt={letter:Y,font:e.font,outerTicks:P[H],showGrid:!z[H],data:[],bgColor:Z,calendar:e.calendar,automargin:!0,visibleDflt:!1,reverseDflt:!1,autotypenumbersDflt:T,splomStash:((e._splomAxes||{})[Y]||{})[G]};K("uirevision",e.uirevision),X.type=nt[G]||"linear",f(W,X,K,vt,e),p(W,X,K,{letter:Y,counterAxes:et[Y],overlayableAxes:tt(Y,H),grid:e.grid}),K("fixedrange"),at(),X._input=W}var yt=b("rangeslider","handleDefaults"),xt=b("rangeselector","handleDefaults");for(y=0;y<j.length;y++)H=j[y],W=t[H],X=e[H],yt(t,e,H),"date"===X.type&&xt(W,X,e,U,X.calendar),K("fixedrange");for(y=0;y<U.length;y++){H=U[y],W=t[H],X=e[H];var bt=e[g(X.anchor)];K("fixedrange",b("rangeslider","isVisible")(bt))}h.handleDefaults(t,e,{axIds:rt.concat(it).sort(d.idSort),axHasImage:I})}},{"../../components/color":643,"../../components/fx/helpers":679,"../../components/fx/hovermode_defaults":682,"../../lib":778,"../../plot_api/plot_template":817,"../../registry":911,"../layout_attributes":882,"./axis_defaults":830,"./axis_ids":831,"./constants":834,"./constraints":835,"./layout_attributes":842,"./position_defaults":845,"./type_defaults":853}],844:[function(t,e,r){"use strict";var n=t("tinycolor2").mix,i=t("../../components/color/attributes").lightFraction,a=t("../../lib");e.exports=function(t,e,r,o){var s=(o=o||{}).dfltColor;function l(r,n){return a.coerce2(t,e,o.attributes,r,n)}var c=l("linecolor",s),u=l("linewidth");r("showline",o.showLine||!!c||!!u)||(delete e.linecolor,delete e.linewidth);var f=l("gridcolor",n(s,o.bgColor,o.blend||i).toRgbString()),h=l("gridwidth");if(r("showgrid",o.showGrid||!!f||!!h)||(delete e.gridcolor,delete e.gridwidth),!o.noZeroLine){var p=l("zerolinecolor",s),d=l("zerolinewidth");r("zeroline",o.showGrid||!!p||!!d)||(delete e.zerolinecolor,delete e.zerolinewidth)}}},{"../../components/color/attributes":642,"../../lib":778,tinycolor2:576}],845:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib");e.exports=function(t,e,r,a){var o,s,l,c,u=a.counterAxes||[],f=a.overlayableAxes||[],h=a.letter,p=a.grid;p&&(s=p._domains[h][p._axisMap[e._id]],o=p._anchors[e._id],s&&(l=p[h+"side"].split(" ")[0],c=p.domain[h]["right"===l||"top"===l?1:0])),s=s||[0,1],o=o||(n(t.position)?"free":u[0]||"free"),l=l||("x"===h?"bottom":"left"),c=c||0,"free"===i.coerce(t,e,{anchor:{valType:"enumerated",values:["free"].concat(u),dflt:o}},"anchor")&&r("position",c),i.coerce(t,e,{side:{valType:"enumerated",values:"x"===h?["bottom","top"]:["left","right"],dflt:l}},"side");var d=!1;if(f.length&&(d=i.coerce(t,e,{overlaying:{valType:"enumerated",values:[!1].concat(f),dflt:!1}},"overlaying")),!d){var g=r("domain",s);g[0]>g[1]-1/4096&&(e.domain=s),i.noneOrAll(t.domain,e.domain,s)}return r("layer"),e}},{"../../lib":778,"fast-isnumeric":241}],846:[function(t,e,r){"use strict";var n=t("../../constants/alignment").FROM_BL;e.exports=function(t,e,r){void 0===r&&(r=n[t.constraintoward||"center"]);var i=[t.r2l(t.range[0]),t.r2l(t.range[1])],a=i[0]+(i[1]-i[0])*r;t.range=t._input.range=[t.l2r(a+(i[0]-a)*e),t.l2r(a+(i[1]-a)*e)],t.setScale()}},{"../../constants/alignment":745}],847:[function(t,e,r){"use strict";var n=t("polybooljs"),i=t("../../registry"),a=t("../../components/drawing").dashStyle,o=t("../../components/color"),s=t("../../components/fx"),l=t("../../components/fx/helpers").makeEventData,c=t("../../components/dragelement/helpers"),u=c.freeMode,f=c.rectMode,h=c.drawMode,p=c.openMode,d=c.selectMode,g=t("../../components/shapes/draw_newshape/display_outlines"),m=t("../../components/shapes/draw_newshape/helpers").handleEllipse,v=t("../../components/shapes/draw_newshape/newshapes"),y=t("../../lib"),x=t("../../lib/polygon"),b=t("../../lib/throttle"),_=t("./axis_ids").getFromId,w=t("../../lib/clear_gl_canvases"),T=t("../../plot_api/subroutines").redrawReglTraces,k=t("./constants"),M=k.MINSELECT,A=x.filter,S=x.tester,E=t("./handle_outline").clearSelect,C=t("./helpers"),L=C.p2r,I=C.axValue,P=C.getTransform;function z(t,e,r,n,i,a,o){var s,l,c,u,f,h,d,m,v,y=e._hoverdata,x=e._fullLayout.clickmode.indexOf("event")>-1,b=[];if(function(t){return t&&Array.isArray(t)&&!0!==t[0].hoverOnBox}(y)){F(t,e,a);var _=function(t,e){var r,n,i=t[0],a=-1,o=[];for(n=0;n0?function(t,e){var r,n,i,a=[];for(i=0;i0&&a.push(r);if(1===a.length&&a[0]===e.searchInfo&&(n=e.searchInfo.cd[0].trace).selectedpoints.length===e.pointNumbers.length){for(i=0;i1)return!1;if((i+=r.selectedpoints.length)>1)return!1}return 1===i}(s)&&(h=j(_))){for(o&&o.remove(),v=0;v=0&&n._fullLayout._deactivateShape(n),h(e)){var a=n._fullLayout._zoomlayer.selectAll(".select-outline-"+r.id);if(a&&n._fullLayout._drawing){var o=v(a,t);o&&i.call("_guiRelayout",n,{shapes:o}),n._fullLayout._drawing=!1}}r.selection={},r.selection.selectionDefs=t.selectionDefs=[],r.selection.mergedPolygons=t.mergedPolygons=[]}function N(t,e,r,n){var i,a,o,s=[],l=e.map((function(t){return t._id})),c=r.map((function(t){return t._id}));for(o=0;o0?n[0]:r;return!!e.selectedpoints&&e.selectedpoints.indexOf(i)>-1}function U(t,e,r){var n,a,o,s;for(n=0;n=0)C._fullLayout._deactivateShape(C);else if(!_){var r=O.clickmode;b.done(gt).then((function(){if(b.clear(gt),2===t){for(ft.remove(),$=0;$-1&&z(e,C,i.xaxes,i.yaxes,i.subplot,i,ft),"event"===r&&C.emit("plotly_selected",void 0);s.click(C,e)})).catch(y.error)}},i.doneFn=function(){dt.remove(),b.done(gt).then((function(){b.clear(gt),i.gd.emit("plotly_selected",et),Q&&i.selectionDefs&&(Q.subtract=ut,i.selectionDefs.push(Q),i.mergedPolygons.length=0,[].push.apply(i.mergedPolygons,K)),i.doneFnCompleted&&i.doneFnCompleted(mt)})).catch(y.error),_&&B(i)}},clearSelect:E,clearSelectionsCache:B,selectOnClick:z}},{"../../components/color":643,"../../components/dragelement/helpers":661,"../../components/drawing":665,"../../components/fx":683,"../../components/fx/helpers":679,"../../components/shapes/draw_newshape/display_outlines":728,"../../components/shapes/draw_newshape/helpers":729,"../../components/shapes/draw_newshape/newshapes":730,"../../lib":778,"../../lib/clear_gl_canvases":762,"../../lib/polygon":790,"../../lib/throttle":804,"../../plot_api/subroutines":818,"../../registry":911,"./axis_ids":831,"./constants":834,"./handle_outline":838,"./helpers":839,polybooljs:517}],848:[function(t,e,r){"use strict";var n=t("d3"),i=t("d3-time-format").utcFormat,a=t("fast-isnumeric"),o=t("../../lib"),s=o.cleanNumber,l=o.ms2DateTime,c=o.dateTime2ms,u=o.ensureNumber,f=o.isArrayOrTypedArray,h=t("../../constants/numerical"),p=h.FP_SAFE,d=h.BADNUM,g=h.LOG_CLIP,m=h.ONEWEEK,v=h.ONEDAY,y=h.ONEHOUR,x=h.ONEMIN,b=h.ONESEC,_=t("./axis_ids"),w=t("./constants"),T=w.HOUR_PATTERN,k=w.WEEKDAY_PATTERN;function M(t){return Math.pow(10,t)}function A(t){return null!=t}e.exports=function(t,e){e=e||{};var r=t._id||"x",h=r.charAt(0);function S(e,r){if(e>0)return Math.log(e)/Math.LN10;if(e<=0&&r&&t.range&&2===t.range.length){var n=t.range[0],i=t.range[1];return.5*(n+i-2*g*Math.abs(n-i))}return d}function E(e,r,n,i){if((i||{}).msUTC&&a(e))return+e;var s=c(e,n||t.calendar);if(s===d){if(!a(e))return d;e=+e;var l=Math.floor(10*o.mod(e+.05,1)),u=Math.round(e-l/10);s=c(new Date(u))+l/10}return s}function C(e,r,n){return l(e,r,n||t.calendar)}function L(e){return t._categories[Math.round(e)]}function I(e){if(A(e)){if(void 0===t._categoriesMap&&(t._categoriesMap={}),void 0!==t._categoriesMap[e])return t._categoriesMap[e];t._categories.push("number"==typeof e?String(e):e);var r=t._categories.length-1;return t._categoriesMap[e]=r,r}return d}function P(e){if(t._categoriesMap)return t._categoriesMap[e]}function z(t){var e=P(t);return void 0!==e?e:a(t)?+t:void 0}function O(t){return a(t)?+t:P(t)}function D(t,e,r){return n.round(r+e*t,2)}function R(t,e,r){return(t-r)/e}var F=function(e){return a(e)?D(e,t._m,t._b):d},B=function(e){return R(e,t._m,t._b)};if(t.rangebreaks){var N="y"===h;F=function(e){if(!a(e))return d;var r=t._rangebreaks.length;if(!r)return D(e,t._m,t._b);var n=N;t.range[0]>t.range[1]&&(n=!n);for(var i=n?-1:1,o=i*e,s=0,l=0;lu)){s=o<(c+u)/2?l:l+1;break}s=l+1}var f=t._B[s]||0;return isFinite(f)?D(e,t._m2,f):0},B=function(e){var r=t._rangebreaks.length;if(!r)return R(e,t._m,t._b);for(var n=0,i=0;it._rangebreaks[i].pmax&&(n=i+1);return R(e,t._m2,t._B[n])}}t.c2l="log"===t.type?S:u,t.l2c="log"===t.type?M:u,t.l2p=F,t.p2l=B,t.c2p="log"===t.type?function(t,e){return F(S(t,e))}:F,t.p2c="log"===t.type?function(t){return M(B(t))}:B,-1!==["linear","-"].indexOf(t.type)?(t.d2r=t.r2d=t.d2c=t.r2c=t.d2l=t.r2l=s,t.c2d=t.c2r=t.l2d=t.l2r=u,t.d2p=t.r2p=function(e){return t.l2p(s(e))},t.p2d=t.p2r=B,t.cleanPos=u):"log"===t.type?(t.d2r=t.d2l=function(t,e){return S(s(t),e)},t.r2d=t.r2c=function(t){return M(s(t))},t.d2c=t.r2l=s,t.c2d=t.l2r=u,t.c2r=S,t.l2d=M,t.d2p=function(e,r){return t.l2p(t.d2r(e,r))},t.p2d=function(t){return M(B(t))},t.r2p=function(e){return t.l2p(s(e))},t.p2r=B,t.cleanPos=u):"date"===t.type?(t.d2r=t.r2d=o.identity,t.d2c=t.r2c=t.d2l=t.r2l=E,t.c2d=t.c2r=t.l2d=t.l2r=C,t.d2p=t.r2p=function(e,r,n){return t.l2p(E(e,0,n))},t.p2d=t.p2r=function(t,e,r){return C(B(t),e,r)},t.cleanPos=function(e){return o.cleanDate(e,d,t.calendar)}):"category"===t.type?(t.d2c=t.d2l=I,t.r2d=t.c2d=t.l2d=L,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=O(e);return void 0!==r?r:t.fraction2r(.5)},t.l2r=t.c2r=u,t.r2l=O,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return L(B(t))},t.r2p=t.d2p,t.p2r=B,t.cleanPos=function(t){return"string"==typeof t&&""!==t?t:u(t)}):"multicategory"===t.type&&(t.r2d=t.c2d=t.l2d=L,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=z(e);return void 0!==r?r:t.fraction2r(.5)},t.r2c_just_indices=P,t.l2r=t.c2r=u,t.r2l=z,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return L(B(t))},t.r2p=t.d2p,t.p2r=B,t.cleanPos=function(t){return Array.isArray(t)||"string"==typeof t&&""!==t?t:u(t)},t.setupMultiCategory=function(n){var i,a,s=t._traceIndices,l=t._matchGroup;if(l&&0===t._categories.length)for(var c in l)if(c!==r){var u=e[_.id2name(c)];s=s.concat(u._traceIndices)}var p=[[0,{}],[0,{}]],d=[];for(i=0;ip&&(s[n]=p),s[0]===s[1]){var c=Math.max(1,Math.abs(1e-6*s[0]));s[0]-=c,s[1]+=c}}else o.nestedProperty(t,e).set(i)},t.setScale=function(r){var n=e._size;if(t.overlaying){var i=_.getFromId({_fullLayout:e},t.overlaying);t.domain=i.domain}var a=r&&t._r?"_r":"range",o=t.calendar;t.cleanRange(a);var s,l,c=t.r2l(t[a][0],o),u=t.r2l(t[a][1],o),f="y"===h;if((f?(t._offset=n.t+(1-t.domain[1])*n.h,t._length=n.h*(t.domain[1]-t.domain[0]),t._m=t._length/(c-u),t._b=-t._m*u):(t._offset=n.l+t.domain[0]*n.w,t._length=n.w*(t.domain[1]-t.domain[0]),t._m=t._length/(u-c),t._b=-t._m*c),t._rangebreaks=[],t._lBreaks=0,t._m2=0,t._B=[],t.rangebreaks)&&(t._rangebreaks=t.locateBreaks(Math.min(c,u),Math.max(c,u)),t._rangebreaks.length)){for(s=0;su&&(p=!p),p&&t._rangebreaks.reverse();var d=p?-1:1;for(t._m2=d*t._length/(Math.abs(u-c)-t._lBreaks),t._B.push(-t._m2*(f?u:c)),s=0;si&&(i+=7,ai&&(i+=24,a=n&&a=n&&e=s.min&&(ts.max&&(s.max=n),i=!1)}i&&c.push({min:t,max:n})}};for(n=0;nr.duration?(!function(){for(var r={},n=0;n rect").call(o.setTranslate,0,0).call(o.setScale,1,1),t.plot.call(o.setTranslate,e._offset,r._offset).call(o.setScale,1,1);var n=t.plot.selectAll(".scatterlayer .trace");n.selectAll(".point").call(o.setPointGroupScale,1,1),n.selectAll(".textpoint").call(o.setTextPointsScale,1,1),n.call(o.hideOutsideRangePoints,t)}function m(e,r){var n=e.plotinfo,i=n.xaxis,l=n.yaxis,c=i._length,u=l._length,f=!!e.xr1,h=!!e.yr1,p=[];if(f){var d=a.simpleMap(e.xr0,i.r2l),g=a.simpleMap(e.xr1,i.r2l),m=d[1]-d[0],v=g[1]-g[0];p[0]=(d[0]*(1-r)+r*g[0]-d[0])/(d[1]-d[0])*c,p[2]=c*(1-r+r*v/m),i.range[0]=i.l2r(d[0]*(1-r)+r*g[0]),i.range[1]=i.l2r(d[1]*(1-r)+r*g[1])}else p[0]=0,p[2]=c;if(h){var y=a.simpleMap(e.yr0,l.r2l),x=a.simpleMap(e.yr1,l.r2l),b=y[1]-y[0],_=x[1]-x[0];p[1]=(y[1]*(1-r)+r*x[1]-y[1])/(y[0]-y[1])*u,p[3]=u*(1-r+r*_/b),l.range[0]=i.l2r(y[0]*(1-r)+r*x[0]),l.range[1]=l.l2r(y[1]*(1-r)+r*x[1])}else p[1]=0,p[3]=u;s.drawOne(t,i,{skipTitle:!0}),s.drawOne(t,l,{skipTitle:!0}),s.redrawComponents(t,[i._id,l._id]);var w=f?c/p[2]:1,T=h?u/p[3]:1,k=f?p[0]:0,M=h?p[1]:0,A=f?p[0]/p[2]*c:0,S=h?p[1]/p[3]*u:0,E=i._offset-A,C=l._offset-S;n.clipRect.call(o.setTranslate,k,M).call(o.setScale,1/w,1/T),n.plot.call(o.setTranslate,E,C).call(o.setScale,w,T),o.setPointGroupScale(n.zoomScalePts,1/w,1/T),o.setTextPointsScale(n.zoomScaleTxt,1/w,1/T)}s.redrawComponents(t)}},{"../../components/drawing":665,"../../lib":778,"../../registry":911,"./axes":828,d3:169}],853:[function(t,e,r){"use strict";var n=t("../../registry").traceIs,i=t("./axis_autotype");function a(t){return{v:"x",h:"y"}[t.orientation||"v"]}function o(t,e){var r=a(t),i=n(t,"box-violin"),o=n(t._fullInput||{},"candlestick");return i&&!o&&e===r&&void 0===t[r]&&void 0===t[r+"0"]}e.exports=function(t,e,r,s){r("autotypenumbers",s.autotypenumbersDflt),"-"===r("type",(s.splomStash||{}).type)&&(!function(t,e){if("-"!==t.type)return;var r,s=t._id,l=s.charAt(0);-1!==s.indexOf("scene")&&(s=l);var c=function(t,e,r){for(var n=0;n0&&(i["_"+r+"axes"]||{})[e])return i;if((i[r+"axis"]||r)===e){if(o(i,r))return i;if((i[r]||[]).length||i[r+"0"])return i}}}(e,s,l);if(!c)return;if("histogram"===c.type&&l==={v:"y",h:"x"}[c.orientation||"v"])return void(t.type="linear");var u=l+"calendar",f=c[u],h={noMultiCategory:!n(c,"cartesian")||n(c,"noMultiCategory")};"box"===c.type&&c._hasPreCompStats&&l==={h:"x",v:"y"}[c.orientation||"v"]&&(h.noMultiCategory=!0);if(h.autotypenumbers=t.autotypenumbers,o(c,l)){var p=a(c),d=[];for(r=0;r0?".":"")+a;i.isPlainObject(o)?l(o,e,s,n+1):e(s,a,o)}}))}r.manageCommandObserver=function(t,e,n,o){var s={},l=!0;e&&e._commandObserver&&(s=e._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=r.hasSimpleAPICommandBindings(t,n,s.lookupTable);if(e&&e._commandObserver){if(c)return s;if(e._commandObserver.remove)return e._commandObserver.remove(),e._commandObserver=null,s}if(c){a(t,c,s.cache),s.check=function(){if(l){var e=a(t,c,s.cache);return e.changed&&o&&void 0!==s.lookupTable[e.value]&&(s.disable(),Promise.resolve(o({value:e.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[e.value]})).then(s.enable,s.enable)),e.changed}};for(var u=["plotly_relayout","plotly_redraw","plotly_restyle","plotly_update","plotly_animatingframe","plotly_afterplot"],f=0;f0&&i<0&&(i+=360);var s=(i-n)/4;return{type:"Polygon",coordinates:[[[n,a],[n,o],[n+s,o],[n+2*s,o],[n+3*s,o],[i,o],[i,a],[i-s,a],[i-2*s,a],[i-3*s,a],[n,a]]]}}e.exports=function(t){return new w(t)},T.plot=function(t,e,r){var n=this,i=e[this.id],a=[],o=!1;for(var s in y.layerNameToAdjective)if("frame"!==s&&i["show"+s]){o=!0;break}for(var l=0;l0&&a._module.calcGeoJSON(i,e)}if(!this.updateProjection(t,e)){this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r),this.scope=r.scope,this.updateBaseLayers(e,r),this.updateDims(e,r),this.updateFx(e,r),u.generalUpdatePerTraceModule(this.graphDiv,this,t,r);var o=this.layers.frontplot.select(".scatterlayer");this.dataPoints.point=o.selectAll(".point"),this.dataPoints.text=o.selectAll("text"),this.dataPaths.line=o.selectAll(".js-line");var s=this.layers.backplot.select(".choroplethlayer");this.dataPaths.choropleth=s.selectAll("path"),this.render()}},T.updateProjection=function(t,e){var r=this.graphDiv,o=e[this.id],s=e._size,l=o.domain,c=o.projection,u=o.lonaxis,f=o.lataxis,p=u._ax,d=f._ax,g=this.projection=function(t){for(var e=t.projection.type,r=n.geo[y.projNames[e]](),i=t._isClipped?y.lonaxisSpan[e]/2:null,a=["center","rotate","parallels","clipExtent"],o=function(t){return t?r:[]},s=0;si*Math.PI/180}return!1},r.getPath=function(){return n.geo.path().projection(r)},r.getBounds=function(t){return r.getPath().bounds(t)},r.fitExtent=function(t,e){var n=t[1][0]-t[0][0],i=t[1][1]-t[0][1],a=r.clipExtent&&r.clipExtent();r.scale(150).translate([0,0]),a&&r.clipExtent(null);var o=r.getBounds(e),s=Math.min(n/(o[1][0]-o[0][0]),i/(o[1][1]-o[0][1])),l=+t[0][0]+(n-s*(o[1][0]+o[0][0]))/2,c=+t[0][1]+(i-s*(o[1][1]+o[0][1]))/2;return a&&r.clipExtent(a),r.scale(150*s).translate([l,c])},r.precision(y.precision),i&&r.clipAngle(i-y.clipPad);return r}(o),m=[[s.l+s.w*l.x[0],s.t+s.h*(1-l.y[1])],[s.l+s.w*l.x[1],s.t+s.h*(1-l.y[0])]],v=o.center||{},x=c.rotation||{},b=u.range||[],_=f.range||[];if(o.fitbounds){p._length=m[1][0]-m[0][0],d._length=m[1][1]-m[0][1],p.range=h(r,p),d.range=h(r,d);var w=(p.range[0]+p.range[1])/2,T=(d.range[0]+d.range[1])/2;if(o._isScoped)v={lon:w,lat:T};else if(o._isClipped){v={lon:w,lat:T},x={lon:w,lat:T,roll:x.roll};var M=c.type,A=y.lonaxisSpan[M]/2||180,S=y.lataxisSpan[M]/2||90;b=[w-A,w+A],_=[T-S,T+S]}else v={lon:w,lat:T},x={lon:w,lat:x.lat,roll:x.roll}}g.center([v.lon-x.lon,v.lat-x.lat]).rotate([-x.lon,-x.lat,x.roll]).parallels(c.parallels);var E=k(b,_);g.fitExtent(m,E);var C=this.bounds=g.getBounds(E),L=this.fitScale=g.scale(),I=g.translate();if(!isFinite(C[0][0])||!isFinite(C[0][1])||!isFinite(C[1][0])||!isFinite(C[1][1])||isNaN(I[0])||isNaN(I[0])){for(var P=["fitbounds","projection.rotation","center","lonaxis.range","lataxis.range"],z="Invalid geo settings, relayout'ing to default view.",O={},D=0;D-1&&m(n.event,a,[r.xaxis],[r.yaxis],r.id,f),l.indexOf("event")>-1&&c.click(a,n.event))}))}function h(t){return r.projection.invert([t[0]+r.xaxis._offset,t[1]+r.yaxis._offset])}},T.makeFramework=function(){var t=this,e=t.graphDiv,r=e._fullLayout,i="clip"+r._uid+t.id;t.clipDef=r._clips.append("clipPath").attr("id",i),t.clipRect=t.clipDef.append("rect"),t.framework=n.select(t.container).append("g").attr("class","geo "+t.id).call(l.setClipUrl,i,e),t.project=function(e){var r=t.projection(e);return r?[r[0]-t.xaxis._offset,r[1]-t.yaxis._offset]:[null,null]},t.xaxis={_id:"x",c2p:function(e){return t.project(e)[0]}},t.yaxis={_id:"y",c2p:function(e){return t.project(e)[1]}},t.mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},f.setConvert(t.mockAxis,r)},T.saveViewInitial=function(t){var e,r=t.center||{},n=t.projection,i=n.rotation||{};this.viewInitial={fitbounds:t.fitbounds,"projection.scale":n.scale},e=t._isScoped?{"center.lon":r.lon,"center.lat":r.lat}:t._isClipped?{"projection.rotation.lon":i.lon,"projection.rotation.lat":i.lat}:{"center.lon":r.lon,"center.lat":r.lat,"projection.rotation.lon":i.lon},a.extendFlat(this.viewInitial,e)},T.render=function(){var t,e=this.projection,r=e.getPath();function n(t){var r=e(t.lonlat);return r?o(r[0],r[1]):null}function i(t){return e.isLonLatOverEdges(t.lonlat)?"none":null}for(t in this.basePaths)this.basePaths[t].attr("d",r);for(t in this.dataPaths)this.dataPaths[t].attr("d",(function(t){return r(t.geojson)}));for(t in this.dataPoints)this.dataPoints[t].attr("display",i).attr("transform",n)}},{"../../components/color":643,"../../components/dragelement":662,"../../components/drawing":665,"../../components/fx":683,"../../lib":778,"../../lib/geo_location_utils":771,"../../lib/topojson_utils":806,"../../registry":911,"../cartesian/autorange":827,"../cartesian/axes":828,"../cartesian/select":847,"../plots":891,"./constants":858,"./projections":863,"./zoom":864,d3:169,"topojson-client":579}],860:[function(t,e,r){"use strict";var n=t("../../plots/get_data").getSubplotCalcData,i=t("../../lib").counterRegex,a=t("./geo"),o="geo",s=i(o),l={};l.geo={valType:"subplotid",dflt:o,editType:"calc"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:t("./layout_attributes"),supplyLayoutDefaults:t("./layout_defaults"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots.geo,s=0;s0&&L<0&&(L+=360);var I,P,z,O=(C+L)/2;if(!p){var D=d?f.projRotate:[O,0,0];I=r("projection.rotation.lon",D[0]),r("projection.rotation.lat",D[1]),r("projection.rotation.roll",D[2]),r("showcoastlines",!d&&y)&&(r("coastlinecolor"),r("coastlinewidth")),r("showocean",!!y&&void 0)&&r("oceancolor")}(p?(P=-96.6,z=38.7):(P=d?O:I,z=(E[0]+E[1])/2),r("center.lon",P),r("center.lat",z),g)&&r("projection.parallels",f.projParallels||[0,60]);r("projection.scale"),r("showland",!!y&&void 0)&&r("landcolor"),r("showlakes",!!y&&void 0)&&r("lakecolor"),r("showrivers",!!y&&void 0)&&(r("rivercolor"),r("riverwidth")),r("showcountries",d&&"usa"!==u&&y)&&(r("countrycolor"),r("countrywidth")),("usa"===u||"north america"===u&&50===c)&&(r("showsubunits",y),r("subunitcolor"),r("subunitwidth")),d||r("showframe",y)&&(r("framecolor"),r("framewidth")),r("bgcolor"),r("fitbounds")&&(delete e.projection.scale,d?(delete e.center.lon,delete e.center.lat):m?(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon,delete e.projection.rotation.lat,delete e.lonaxis.range,delete e.lataxis.range):(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon))}e.exports=function(t,e,r){i(t,e,r,{type:"geo",attributes:s,handleDefaults:c,fullData:r,partition:"y"})}},{"../../lib":778,"../get_data":865,"../subplot_defaults":905,"./constants":858,"./layout_attributes":861}],863:[function(t,e,r){"use strict";e.exports=function(t){function e(t,e){return{type:"Feature",id:t.id,properties:t.properties,geometry:r(t.geometry,e)}}function r(e,n){if(!e)return null;if("GeometryCollection"===e.type)return{type:"GeometryCollection",geometries:object.geometries.map((function(t){return r(t,n)}))};if(!c.hasOwnProperty(e.type))return null;var i=c[e.type];return t.geo.stream(e,n(i)),i.result()}t.geo.project=function(t,e){var i=e.stream;if(!i)throw new Error("not yet supported");return(t&&n.hasOwnProperty(t.type)?n[t.type]:r)(t,i)};var n={Feature:e,FeatureCollection:function(t,r){return{type:"FeatureCollection",features:t.features.map((function(t){return e(t,r)}))}}},i=[],a=[],o={point:function(t,e){i.push([t,e])},result:function(){var t=i.length?i.length<2?{type:"Point",coordinates:i[0]}:{type:"MultiPoint",coordinates:i}:null;return i=[],t}},s={lineStart:u,point:function(t,e){i.push([t,e])},lineEnd:function(){i.length&&(a.push(i),i=[])},result:function(){var t=a.length?a.length<2?{type:"LineString",coordinates:a[0]}:{type:"MultiLineString",coordinates:a}:null;return a=[],t}},l={polygonStart:u,lineStart:u,point:function(t,e){i.push([t,e])},lineEnd:function(){var t=i.length;if(t){do{i.push(i[0].slice())}while(++t<4);a.push(i),i=[]}},polygonEnd:u,result:function(){if(!a.length)return null;var t=[],e=[];return a.forEach((function(r){!function(t){if((e=t.length)<4)return!1;var e,r=0,n=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];for(;++rn^p>n&&r<(h-c)*(n-u)/(p-u)+c&&(i=!i)}return i}(t[0],r))return t.push(e),!0}))||t.push([e])})),a=[],t.length?t.length>1?{type:"MultiPolygon",coordinates:t}:{type:"Polygon",coordinates:t[0]}:null}},c={Point:o,MultiPoint:o,LineString:s,MultiLineString:s,Polygon:l,MultiPolygon:l,Sphere:l};function u(){}var f=1e-6,h=Math.PI,p=h/2,d=(Math.sqrt(h),h/180),g=180/h;function m(t){return t>1?p:t<-1?-p:Math.asin(t)}function v(t){return t>1?0:t<-1?h:Math.acos(t)}var y=t.geo.projection,x=t.geo.projectionMutator;function b(t,e){var r=(2+p)*Math.sin(e);e/=2;for(var n=0,i=1/0;n<10&&Math.abs(i)>f;n++){var a=Math.cos(e);e-=i=(e+Math.sin(e)*(a+2)-r)/(2*a*(1+a))}return[2/Math.sqrt(h*(4+h))*t*(1+Math.cos(e)),2*Math.sqrt(h/(4+h))*Math.sin(e)]}t.geo.interrupt=function(e){var r,n=[[[[-h,0],[0,p],[h,0]]],[[[-h,0],[0,-p],[h,0]]]];function i(t,r){for(var i=r<0?-1:1,a=n[+(r<0)],o=0,s=a.length-1;oa[o][2][0];++o);var l=e(t-a[o][1][0],r);return l[0]+=e(a[o][1][0],i*r>i*a[o][0][1]?a[o][0][1]:r)[0],l}function a(){r=n.map((function(t){return t.map((function(t){var r,n=e(t[0][0],t[0][1])[0],i=e(t[2][0],t[2][1])[0],a=e(t[1][0],t[0][1])[1],o=e(t[1][0],t[1][1])[1];return a>o&&(r=a,a=o,o=r),[[n,a],[i,o]]}))}))}e.invert&&(i.invert=function(t,a){for(var o=r[+(a<0)],s=n[+(a<0)],l=0,u=o.length;l=0;--i){var p;o=180*(p=n[1][i])[0][0]/h,s=180*p[0][1]/h,c=180*p[1][1]/h,u=180*p[2][0]/h,f=180*p[2][1]/h;r.push(l([[u-e,f-e],[u-e,c+e],[o+e,c+e],[o+e,s-e]],30))}return{type:"Polygon",coordinates:[t.merge(r)]}}(),a)},i},o.lobes=function(t){return arguments.length?(n=t.map((function(t){return t.map((function(t){return[[t[0][0]*h/180,t[0][1]*h/180],[t[1][0]*h/180,t[1][1]*h/180],[t[2][0]*h/180,t[2][1]*h/180]]}))})),a(),o):n.map((function(t){return t.map((function(t){return[[180*t[0][0]/h,180*t[0][1]/h],[180*t[1][0]/h,180*t[1][1]/h],[180*t[2][0]/h,180*t[2][1]/h]]}))}))},o},b.invert=function(t,e){var r=.5*e*Math.sqrt((4+h)/h),n=m(r),i=Math.cos(n);return[t/(2/Math.sqrt(h*(4+h))*(1+i)),m((n+r*(i+2))/(2+p))]},(t.geo.eckert4=function(){return y(b)}).raw=b;var _=t.geo.azimuthalEqualArea.raw;function w(t,e){if(arguments.length<2&&(e=t),1===e)return _;if(e===1/0)return T;function r(r,n){var i=_(r/e,n);return i[0]*=t,i}return r.invert=function(r,n){var i=_.invert(r/t,n);return i[0]*=e,i},r}function T(t,e){return[t*Math.cos(e)/Math.cos(e/=2),2*Math.sin(e)]}function k(t,e){return[3*t/(2*h)*Math.sqrt(h*h/3-e*e),e]}function M(t,e){return[t,1.25*Math.log(Math.tan(h/4+.4*e))]}function A(t){return function(e){var r,n=t*Math.sin(e),i=30;do{e-=r=(e+Math.sin(e)-n)/(1+Math.cos(e))}while(Math.abs(r)>f&&--i>0);return e/2}}T.invert=function(t,e){var r=2*m(e/2);return[t*Math.cos(r/2)/Math.cos(r),r]},(t.geo.hammer=function(){var t=2,e=x(w),r=e(t);return r.coefficient=function(r){return arguments.length?e(t=+r):t},r}).raw=w,k.invert=function(t,e){return[2/3*h*t/Math.sqrt(h*h/3-e*e),e]},(t.geo.kavrayskiy7=function(){return y(k)}).raw=k,M.invert=function(t,e){return[t,2.5*Math.atan(Math.exp(.8*e))-.625*h]},(t.geo.miller=function(){return y(M)}).raw=M,A(h);var S=function(t,e,r){var n=A(r);function i(r,i){return[t*r*Math.cos(i=n(i)),e*Math.sin(i)]}return i.invert=function(n,i){var a=m(i/e);return[n/(t*Math.cos(a)),m((2*a+Math.sin(2*a))/r)]},i}(Math.SQRT2/p,Math.SQRT2,h);function E(t,e){var r=e*e,n=r*r;return[t*(.8707-.131979*r+n*(n*(.003971*r-.001529*n)-.013791)),e*(1.007226+r*(.015085+n*(.028874*r-.044475-.005916*n)))]}(t.geo.mollweide=function(){return y(S)}).raw=S,E.invert=function(t,e){var r,n=e,i=25;do{var a=n*n,o=a*a;n-=r=(n*(1.007226+a*(.015085+o*(.028874*a-.044475-.005916*o)))-e)/(1.007226+a*(.045255+o*(.259866*a-.311325-.005916*11*o)))}while(Math.abs(r)>f&&--i>0);return[t/(.8707+(a=n*n)*(a*(a*a*a*(.003971-.001529*a)-.013791)-.131979)),n]},(t.geo.naturalEarth=function(){return y(E)}).raw=E;var C=[[.9986,-.062],[1,0],[.9986,.062],[.9954,.124],[.99,.186],[.9822,.248],[.973,.31],[.96,.372],[.9427,.434],[.9216,.4958],[.8962,.5571],[.8679,.6176],[.835,.6769],[.7986,.7346],[.7597,.7903],[.7186,.8435],[.6732,.8936],[.6213,.9394],[.5722,.9761],[.5322,1]];function L(t,e){var r,n=Math.min(18,36*Math.abs(e)/h),i=Math.floor(n),a=n-i,o=(r=C[i])[0],s=r[1],l=(r=C[++i])[0],c=r[1],u=(r=C[Math.min(19,++i)])[0],f=r[1];return[t*(l+a*(u-o)/2+a*a*(u-2*l+o)/2),(e>0?p:-p)*(c+a*(f-s)/2+a*a*(f-2*c+s)/2)]}function I(t,e){return[t*Math.cos(e),e]}function P(t,e){var r,n=Math.cos(e),i=(r=v(n*Math.cos(t/=2)))?r/Math.sin(r):1;return[2*n*Math.sin(t)*i,Math.sin(e)*i]}function z(t,e){var r=P(t,e);return[(r[0]+t/p)/2,(r[1]+e)/2]}C.forEach((function(t){t[1]*=1.0144})),L.invert=function(t,e){var r=e/p,n=90*r,i=Math.min(18,Math.abs(n/5)),a=Math.max(0,Math.floor(i));do{var o=C[a][1],s=C[a+1][1],l=C[Math.min(19,a+2)][1],c=l-o,u=l-2*s+o,f=2*(Math.abs(r)-s)/c,h=u/c,m=f*(1-h*f*(1-2*h*f));if(m>=0||1===a){n=(e>=0?5:-5)*(m+i);var v,y=50;do{m=(i=Math.min(18,Math.abs(n)/5))-(a=Math.floor(i)),o=C[a][1],s=C[a+1][1],l=C[Math.min(19,a+2)][1],n-=(v=(e>=0?p:-p)*(s+m*(l-o)/2+m*m*(l-2*s+o)/2)-e)*g}while(Math.abs(v)>1e-12&&--y>0);break}}while(--a>=0);var x=C[a][0],b=C[a+1][0],_=C[Math.min(19,a+2)][0];return[t/(b+m*(_-x)/2+m*m*(_-2*b+x)/2),n*d]},(t.geo.robinson=function(){return y(L)}).raw=L,I.invert=function(t,e){return[t/Math.cos(e),e]},(t.geo.sinusoidal=function(){return y(I)}).raw=I,P.invert=function(t,e){if(!(t*t+4*e*e>h*h+f)){var r=t,n=e,i=25;do{var a,o=Math.sin(r),s=Math.sin(r/2),l=Math.cos(r/2),c=Math.sin(n),u=Math.cos(n),p=Math.sin(2*n),d=c*c,g=u*u,m=s*s,y=1-g*l*l,x=y?v(u*l)*Math.sqrt(a=1/y):a=0,b=2*x*u*s-t,_=x*c-e,w=a*(g*m+x*u*l*d),T=a*(.5*o*p-2*x*c*s),k=.25*a*(p*s-x*c*g*o),M=a*(d*l+x*m*u),A=T*k-M*w;if(!A)break;var S=(_*T-b*M)/A,E=(b*k-_*w)/A;r-=S,n-=E}while((Math.abs(S)>f||Math.abs(E)>f)&&--i>0);return[r,n]}},(t.geo.aitoff=function(){return y(P)}).raw=P,z.invert=function(t,e){var r=t,n=e,i=25;do{var a,o=Math.cos(n),s=Math.sin(n),l=Math.sin(2*n),c=s*s,u=o*o,h=Math.sin(r),d=Math.cos(r/2),g=Math.sin(r/2),m=g*g,y=1-u*d*d,x=y?v(o*d)*Math.sqrt(a=1/y):a=0,b=.5*(2*x*o*g+r/p)-t,_=.5*(x*s+n)-e,w=.5*a*(u*m+x*o*d*c)+.5/p,T=a*(h*l/4-x*s*g),k=.125*a*(l*g-x*s*u*h),M=.5*a*(c*d+x*m*o)+.5,A=T*k-M*w,S=(_*T-b*M)/A,E=(b*k-_*w)/A;r-=S,n-=E}while((Math.abs(S)>f||Math.abs(E)>f)&&--i>0);return[r,n]},(t.geo.winkel3=function(){return y(z)}).raw=z}},{}],864:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../registry"),o=Math.PI/180,s=180/Math.PI,l={cursor:"pointer"},c={cursor:"auto"};function u(t,e){return n.behavior.zoom().translate(e.translate()).scale(e.scale())}function f(t,e,r){var n=t.id,o=t.graphDiv,s=o.layout,l=s[n],c=o._fullLayout,u=c[n],f={},h={};function p(t,e){f[n+"."+t]=i.nestedProperty(l,t).get(),a.call("_storeDirectGUIEdit",s,c._preGUI,f);var r=i.nestedProperty(u,t);r.get()!==e&&(r.set(e),i.nestedProperty(l,t).set(e),h[n+"."+t]=e)}r(p),p("projection.scale",e.scale()/t.fitScale),p("fitbounds",!1),o.emit("plotly_relayout",h)}function h(t,e){var r=u(0,e);function i(r){var n=e.invert(t.midPt);r("center.lon",n[0]),r("center.lat",n[1])}return r.on("zoomstart",(function(){n.select(this).style(l)})).on("zoom",(function(){e.scale(n.event.scale).translate(n.event.translate),t.render();var r=e.invert(t.midPt);t.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":e.scale()/t.fitScale,"geo.center.lon":r[0],"geo.center.lat":r[1]})})).on("zoomend",(function(){n.select(this).style(c),f(t,e,i)})),r}function p(t,e){var r,i,a,o,s,h,p,d,g,m=u(0,e);function v(t){return e.invert(t)}function y(r){var n=e.rotate(),i=e.invert(t.midPt);r("projection.rotation.lon",-n[0]),r("center.lon",i[0]),r("center.lat",i[1])}return m.on("zoomstart",(function(){n.select(this).style(l),r=n.mouse(this),i=e.rotate(),a=e.translate(),o=i,s=v(r)})).on("zoom",(function(){if(h=n.mouse(this),function(t){var r=v(t);if(!r)return!0;var n=e(r);return Math.abs(n[0]-t[0])>2||Math.abs(n[1]-t[1])>2}(r))return m.scale(e.scale()),void m.translate(e.translate());e.scale(n.event.scale),e.translate([a[0],n.event.translate[1]]),s?v(h)&&(d=v(h),p=[o[0]+(d[0]-s[0]),i[1],i[2]],e.rotate(p),o=p):s=v(r=h),g=!0,t.render();var l=e.rotate(),c=e.invert(t.midPt);t.graphDiv.emit("plotly_relayouting",{"geo.projection.scale":e.scale()/t.fitScale,"geo.center.lon":c[0],"geo.center.lat":c[1],"geo.projection.rotation.lon":-l[0]})})).on("zoomend",(function(){n.select(this).style(c),g&&f(t,e,y)})),m}function d(t,e){var r,i={r:e.rotate(),k:e.scale()},a=u(0,e),o=function(t){var e=0,r=arguments.length,i=[];for(;++ed?(a=(f>0?90:-90)-p,i=0):(a=Math.asin(f/d)*s-p,i=Math.sqrt(d*d-f*f));var g=180-a-2*p,m=(Math.atan2(h,u)-Math.atan2(c,i))*s,v=(Math.atan2(h,u)-Math.atan2(c,-i))*s;return b(r[0],r[1],a,m)<=b(r[0],r[1],g,v)?[a,m,r[2]]:[g,v,r[2]]}function b(t,e,r,n){var i=_(r-t),a=_(n-e);return Math.sqrt(i*i+a*a)}function _(t){return(t%360+540)%360-180}function w(t,e,r){var n=r*o,i=t.slice(),a=0===e?1:0,s=2===e?1:2,l=Math.cos(n),c=Math.sin(n);return i[a]=t[a]*l-t[s]*c,i[s]=t[s]*l+t[a]*c,i}function T(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*s,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*s,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*s]}function k(t,e){for(var r=0,n=0,i=t.length;nMath.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(a)*_*(s>=0?1:-1),c.boxEnd[1]l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(_))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/_*(a>=0?1:-1),c.boxEnd[0]l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(_)))}}else c.boxEnabled?(a=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],a||s?(a&&(m(0,c.boxStart[0],c.boxEnd[0]),t.xaxis.autorange=!1),s&&(m(1,c.boxStart[1],c.boxEnd[1]),t.yaxis.autorange=!1),t.relayoutCallback()):t.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case"pan":c.boxEnabled=!1,c.boxInited=!1,e?(c.panning||(c.dragStart[0]=n,c.dragStart[1]=i),Math.abs(c.dragStart[0]-n).999&&(g="turntable"):g="turntable")}else g="turntable";r("dragmode",g),r("hovermode",n.getDfltFromLayout("hovermode"))}e.exports=function(t,e,r){var i=e._basePlotModules.length>1;o(t,e,r,{type:"gl3d",attributes:l,handleDefaults:u,fullLayout:e,font:e.font,fullData:r,getDfltFromLayout:function(e){if(!i)return n.validate(t[e],l[e])?t[e]:void 0},autotypenumbersDflt:e.autotypenumbers,paper_bgcolor:e.paper_bgcolor,calendar:e.calendar})}},{"../../../components/color":643,"../../../lib":778,"../../../registry":911,"../../get_data":865,"../../subplot_defaults":905,"./axis_defaults":873,"./layout_attributes":876}],876:[function(t,e,r){"use strict";var n=t("./axis_attributes"),i=t("../../domain").attributes,a=t("../../../lib/extend").extendFlat,o=t("../../../lib").counterRegex;function s(t,e,r){return{x:{valType:"number",dflt:t,editType:"camera"},y:{valType:"number",dflt:e,editType:"camera"},z:{valType:"number",dflt:r,editType:"camera"},editType:"camera"}}e.exports={_arrayAttrRegexps:[o("scene",".annotations",!0)],bgcolor:{valType:"color",dflt:"rgba(0,0,0,0)",editType:"plot"},camera:{up:a(s(0,0,1),{}),center:a(s(0,0,0),{}),eye:a(s(1.25,1.25,1.25),{}),projection:{type:{valType:"enumerated",values:["perspective","orthographic"],dflt:"perspective",editType:"calc"},editType:"calc"},editType:"camera"},domain:i({name:"scene",editType:"plot"}),aspectmode:{valType:"enumerated",values:["auto","cube","data","manual"],dflt:"auto",editType:"plot",impliedEdits:{"aspectratio.x":void 0,"aspectratio.y":void 0,"aspectratio.z":void 0}},aspectratio:{x:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},y:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},z:{valType:"number",min:0,editType:"plot",impliedEdits:{"^aspectmode":"manual"}},editType:"plot",impliedEdits:{aspectmode:"manual"}},xaxis:n,yaxis:n,zaxis:n,dragmode:{valType:"enumerated",values:["orbit","turntable","zoom","pan",!1],editType:"plot"},hovermode:{valType:"enumerated",values:["closest",!1],dflt:"closest",editType:"modebar"},uirevision:{valType:"any",editType:"none"},editType:"plot",_deprecated:{cameraposition:{valType:"info_array",editType:"camera"}}}},{"../../../lib":778,"../../../lib/extend":768,"../../domain":855,"./axis_attributes":872}],877:[function(t,e,r){"use strict";var n=t("../../../lib/str2rgbarray"),i=["xaxis","yaxis","zaxis"];function a(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}a.prototype.merge=function(t){for(var e=0;e<3;++e){var r=t[i[e]];r.visible?(this.enabled[e]=r.showspikes,this.colors[e]=n(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness):(this.enabled[e]=!1,this.drawSides[e]=!1)}},e.exports=function(t){var e=new a;return e.merge(t),e}},{"../../../lib/str2rgbarray":802}],878:[function(t,e,r){"use strict";e.exports=function(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,s=t.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[a[c]];if(u._length=(r[c].hi-r[c].lo)*r[c].pixelsPerDataUnit/t.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=r[c].lo/t.dataScale[c],u.range[1]=r[c].hi/t.dataScale[c],u._m=1/(t.dataScale[c]*r[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var f=u.tickmode;if("auto"===u.tickmode){u.tickmode="linear";var h=u.nticks||i.constrain(u._length/40,4,9);n.autoTicks(u,Math.abs(u.range[1]-u.range[0])/h)}for(var p=n.calcTicks(u,{msUTC:!0}),d=0;d/g," "));l[c]=p,u.tickmode=f}}e.ticks=l;for(c=0;c<3;++c){o[c]=.5*(t.glplot.bounds[0][c]+t.glplot.bounds[1][c]);for(d=0;d<2;++d)e.bounds[d][c]=t.glplot.bounds[d][c]}t.contourLevels=function(t){for(var e=new Array(3),r=0;r<3;++r){for(var n=t[r],i=new Array(n.length),a=0;ar.deltaY?1.1:1/1.1,a=t.glplot.getAspectratio();t.glplot.setAspectratio({x:n*a.x,y:n*a.y,z:n*a.z})}i(t)}}),!!c&&{passive:!1}),t.glplot.canvas.addEventListener("mousemove",(function(){if(!1!==t.fullSceneLayout.dragmode&&0!==t.camera.mouseListener.buttons){var e=n();t.graphDiv.emit("plotly_relayouting",e)}})),t.staticMode||t.glplot.canvas.addEventListener("webglcontextlost",(function(r){e&&e.emit&&e.emit("plotly_webglcontextlost",{event:r,layer:t.id})}),!1)),t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=function(){t.render()},!0},w.render=function(){var t,e=this,r=e.graphDiv,n=e.svgContainer,i=e.container.getBoundingClientRect();r._fullLayout._calcInverseTransform(r);var a=r._fullLayout._invScaleX,o=r._fullLayout._invScaleY,s=i.width*a,l=i.height*o;n.setAttributeNS(null,"viewBox","0 0 "+s+" "+l),n.setAttributeNS(null,"width",s),n.setAttributeNS(null,"height",l),b(e),e.glplot.axes.update(e.axesOptions);for(var c,u=Object.keys(e.traces),h=null,g=e.glplot.selection,m=0;m")):"isosurface"===t.type||"volume"===t.type?(k.valueLabel=p.tickText(e._mockAxis,e._mockAxis.d2l(g.traceCoordinate[3]),"hover").text,E.push("value: "+k.valueLabel),g.textLabel&&E.push(g.textLabel),_=E.join("
")):_=g.textLabel;var C={x:g.traceCoordinate[0],y:g.traceCoordinate[1],z:g.traceCoordinate[2],data:w._input,fullData:w,curveNumber:w.index,pointNumber:T};d.appendArrayPointValue(C,w,T),t._module.eventData&&(C=w._module.eventData(C,g,w,{},T));var L={points:[C]};e.fullSceneLayout.hovermode&&d.loneHover({trace:w,x:(.5+.5*x[0]/x[3])*s,y:(.5-.5*x[1]/x[3])*l,xLabel:k.xLabel,yLabel:k.yLabel,zLabel:k.zLabel,text:_,name:h.name,color:d.castHoverOption(w,T,"bgcolor")||h.color,borderColor:d.castHoverOption(w,T,"bordercolor"),fontFamily:d.castHoverOption(w,T,"font.family"),fontSize:d.castHoverOption(w,T,"font.size"),fontColor:d.castHoverOption(w,T,"font.color"),nameLength:d.castHoverOption(w,T,"namelength"),textAlign:d.castHoverOption(w,T,"align"),hovertemplate:f.castOption(w,T,"hovertemplate"),hovertemplateLabels:f.extendFlat({},C,k),eventData:[C]},{container:n,gd:r}),g.buttons&&g.distance<5?r.emit("plotly_click",L):r.emit("plotly_hover",L),c=L}else d.loneUnhover(n),r.emit("plotly_unhover",c);e.drawAnnotations(e)},w.recoverContext=function(){var t=this;t.glplot.dispose();var e=function(){t.glplot.gl.isContextLost()?requestAnimationFrame(e):t.initializeGLPlot()?t.plot.apply(t,t.plotArgs):f.error("Catastrophic and unrecoverable WebGL error. Context lost.")};requestAnimationFrame(e)};var k=["xaxis","yaxis","zaxis"];function M(t,e,r){for(var n=t.fullSceneLayout,i=0;i<3;i++){var a=k[i],o=a.charAt(0),s=n[a],l=e[o],c=e[o+"calendar"],u=e["_"+o+"length"];if(f.isArrayOrTypedArray(l))for(var h,p=0;p<(u||l.length);p++)if(f.isArrayOrTypedArray(l[p]))for(var d=0;dm[1][a])m[0][a]=-1,m[1][a]=1;else{var C=m[1][a]-m[0][a];m[0][a]-=C/32,m[1][a]+=C/32}if("reversed"===s.autorange){var L=m[0][a];m[0][a]=m[1][a],m[1][a]=L}}else{var I=s.range;m[0][a]=s.r2l(I[0]),m[1][a]=s.r2l(I[1])}m[0][a]===m[1][a]&&(m[0][a]-=1,m[1][a]+=1),v[a]=m[1][a]-m[0][a],this.glplot.setBounds(a,{min:m[0][a]*h[a],max:m[1][a]*h[a]})}var P=c.aspectmode;if("cube"===P)d=[1,1,1];else if("manual"===P){var z=c.aspectratio;d=[z.x,z.y,z.z]}else{if("auto"!==P&&"data"!==P)throw new Error("scene.js aspectRatio was not one of the enumerated types");var O=[1,1,1];for(a=0;a<3;++a){var D=y[l=(s=c[k[a]]).type];O[a]=Math.pow(D.acc,1/D.count)/h[a]}d="data"===P||Math.max.apply(null,O)/Math.min.apply(null,O)<=4?O:[1,1,1]}c.aspectratio.x=u.aspectratio.x=d[0],c.aspectratio.y=u.aspectratio.y=d[1],c.aspectratio.z=u.aspectratio.z=d[2],this.glplot.setAspectratio(c.aspectratio),this.viewInitial.aspectratio||(this.viewInitial.aspectratio={x:c.aspectratio.x,y:c.aspectratio.y,z:c.aspectratio.z}),this.viewInitial.aspectmode||(this.viewInitial.aspectmode=c.aspectmode);var R=c.domain||null,F=e._size||null;if(R&&F){var B=this.container.style;B.position="absolute",B.left=F.l+R.x[0]*F.w+"px",B.top=F.t+(1-R.y[1])*F.h+"px",B.width=F.w*(R.x[1]-R.x[0])+"px",B.height=F.h*(R.y[1]-R.y[0])+"px"}this.glplot.redraw()}},w.destroy=function(){this.glplot&&(this.camera.mouseListener.enabled=!1,this.container.removeEventListener("wheel",this.camera.wheelListener),this.camera=null,this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null)},w.getCamera=function(){var t;return this.camera.view.recalcMatrix(this.camera.view.lastT()),{up:{x:(t=this.camera).up[0],y:t.up[1],z:t.up[2]},center:{x:t.center[0],y:t.center[1],z:t.center[2]},eye:{x:t.eye[0],y:t.eye[1],z:t.eye[2]},projection:{type:!0===t._ortho?"orthographic":"perspective"}}},w.setViewport=function(t){var e,r=t.camera;this.camera.lookAt.apply(this,[[(e=r).eye.x,e.eye.y,e.eye.z],[e.center.x,e.center.y,e.center.z],[e.up.x,e.up.y,e.up.z]]),this.glplot.setAspectratio(t.aspectratio),"orthographic"===r.projection.type!==this.camera._ortho&&(this.glplot.redraw(),this.glplot.clearRGBA(),this.glplot.dispose(),this.initializeGLPlot())},w.isCameraChanged=function(t){var e=this.getCamera(),r=f.nestedProperty(t,this.id+".camera").get();function n(t,e,r,n){var i=["up","center","eye"],a=["x","y","z"];return e[i[r]]&&t[i[r]][a[n]]===e[i[r]][a[n]]}var i=!1;if(void 0===r)i=!0;else{for(var a=0;a<3;a++)for(var o=0;o<3;o++)if(!n(e,r,a,o)){i=!0;break}(!r.projection||e.projection&&e.projection.type!==r.projection.type)&&(i=!0)}return i},w.isAspectChanged=function(t){var e=this.glplot.getAspectratio(),r=f.nestedProperty(t,this.id+".aspectratio").get();return void 0===r||r.x!==e.x||r.y!==e.y||r.z!==e.z},w.saveLayout=function(t){var e,r,n,i,a,o,s=this.fullLayout,l=this.isCameraChanged(t),c=this.isAspectChanged(t),h=l||c;if(h){var p={};if(l&&(e=this.getCamera(),n=(r=f.nestedProperty(t,this.id+".camera")).get(),p[this.id+".camera"]=n),c&&(i=this.glplot.getAspectratio(),o=(a=f.nestedProperty(t,this.id+".aspectratio")).get(),p[this.id+".aspectratio"]=o),u.call("_storeDirectGUIEdit",t,s._preGUI,p),l)r.set(e),f.nestedProperty(s,this.id+".camera").set(e);if(c)a.set(i),f.nestedProperty(s,this.id+".aspectratio").set(i),this.glplot.redraw()}return h},w.updateFx=function(t,e){var r=this.camera;if(r)if("orbit"===t)r.mode="orbit",r.keyBindingMode="rotate";else if("turntable"===t){r.up=[0,0,1],r.mode="turntable",r.keyBindingMode="rotate";var n=this.graphDiv,i=n._fullLayout,a=this.fullSceneLayout.camera,o=a.up.x,s=a.up.y,l=a.up.z;if(l/Math.sqrt(o*o+s*s+l*l)<.999){var c=this.id+".camera.up",h={x:0,y:0,z:1},p={};p[c]=h;var d=n.layout;u.call("_storeDirectGUIEdit",d,i._preGUI,p),a.up=h,f.nestedProperty(d,c).set(h)}}else r.keyBindingMode=t;this.fullSceneLayout.hovermode=e},w.toImage=function(t){t||(t="png"),this.staticMode&&this.container.appendChild(n),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,i=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var a=new Uint8Array(r*i*4);e.readPixels(0,0,r,i,e.RGBA,e.UNSIGNED_BYTE,a),function(t,e,r){for(var n=0,i=r-1;n0)for(var s=255/o,l=0;l<3;++l)t[a+l]=Math.min(s*t[a+l],255)}}(a,r,i);var o=document.createElement("canvas");o.width=r,o.height=i;var s,l=o.getContext("2d"),c=l.createImageData(r,i);switch(c.data.set(a),l.putImageData(c,0,0),t){case"jpeg":s=o.toDataURL("image/jpeg");break;case"webp":s=o.toDataURL("image/webp");break;default:s=o.toDataURL("image/png")}return this.staticMode&&this.container.removeChild(n),s},w.setConvert=function(){for(var t=0;t<3;t++){var e=this.fullSceneLayout[k[t]];p.setConvert(e,this.fullLayout),e.setScale=f.noop}},w.make4thDimension=function(){var t=this.graphDiv._fullLayout;this._mockAxis={type:"linear",showexponent:"all",exponentformat:"B"},p.setConvert(this._mockAxis,t)},e.exports=_},{"../../components/fx":683,"../../lib":778,"../../lib/show_no_webgl_msg":800,"../../lib/str2rgbarray":802,"../../plots/cartesian/axes":828,"../../registry":911,"./layout/convert":874,"./layout/spikes":877,"./layout/tick_marks":878,"./project":879,"gl-plot3d":321,"has-passive-events":441,"webgl-context":606}],881:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){n=n||t.length;for(var i=new Array(n),a=0;a\xa9 OpenStreetMap',tiles:["https://a.tile.openstreetmap.org/{z}/{x}/{y}.png","https://b.tile.openstreetmap.org/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-osm-tiles",type:"raster",source:"plotly-osm-tiles",minzoom:0,maxzoom:22}]},"white-bg":{id:"white-bg",version:8,sources:{},layers:[{id:"white-bg",type:"background",paint:{"background-color":"#FFFFFF"},minzoom:0,maxzoom:22}]},"carto-positron":{id:"carto-positron",version:8,sources:{"plotly-carto-positron":{type:"raster",attribution:'\xa9 CARTO',tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-positron",type:"raster",source:"plotly-carto-positron",minzoom:0,maxzoom:22}]},"carto-darkmatter":{id:"carto-darkmatter",version:8,sources:{"plotly-carto-darkmatter":{type:"raster",attribution:'\xa9 CARTO',tiles:["https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-carto-darkmatter",type:"raster",source:"plotly-carto-darkmatter",minzoom:0,maxzoom:22}]},"stamen-terrain":{id:"stamen-terrain",version:8,sources:{"plotly-stamen-terrain":{type:"raster",attribution:'Map tiles by Stamen Design, under CC BY 3.0 | Data by OpenStreetMap, under ODbL.',tiles:["https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-terrain",type:"raster",source:"plotly-stamen-terrain",minzoom:0,maxzoom:22}]},"stamen-toner":{id:"stamen-toner",version:8,sources:{"plotly-stamen-toner":{type:"raster",attribution:'Map tiles by Stamen Design, under CC BY 3.0 | Data by OpenStreetMap, under ODbL.',tiles:["https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-toner",type:"raster",source:"plotly-stamen-toner",minzoom:0,maxzoom:22}]},"stamen-watercolor":{id:"stamen-watercolor",version:8,sources:{"plotly-stamen-watercolor":{type:"raster",attribution:'Map tiles by Stamen Design, under CC BY 3.0 | Data by OpenStreetMap, under CC BY SA.',tiles:["https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png"],tileSize:256}},layers:[{id:"plotly-stamen-watercolor",type:"raster",source:"plotly-stamen-watercolor",minzoom:0,maxzoom:22}]}},i=Object.keys(n);e.exports={requiredVersion:"1.10.1",styleUrlPrefix:"mapbox://styles/mapbox/",styleUrlSuffix:"v9",styleValuesMapbox:["basic","streets","outdoors","light","dark","satellite","satellite-streets"],styleValueDflt:"basic",stylesNonMapbox:n,styleValuesNonMapbox:i,traceLayerPrefix:"plotly-trace-layer-",layoutLayerPrefix:"plotly-layout-layer-",wrongVersionErrorMsg:["Your custom plotly.js bundle is not using the correct mapbox-gl version","Please install mapbox-gl@1.10.1."].join("\n"),noAccessTokenErrorMsg:["Missing Mapbox access token.","Mapbox trace type require a Mapbox access token to be registered.","For example:"," Plotly.plot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });","More info here: https://www.mapbox.com/help/define-access-token/"].join("\n"),missingStyleErrorMsg:["No valid mapbox style found, please set `mapbox.style` to one of:",i.join(", "),"or register a Mapbox access token to use a Mapbox-served style."].join("\n"),multipleTokensErrorMsg:["Set multiple mapbox access token across different mapbox subplot,","using first token found as mapbox-gl does not allow multipleaccess tokens on the same page."].join("\n"),mapOnErrorMsg:"Mapbox error.",mapboxLogo:{path0:"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z",path1:"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z",path2:"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z",polygon:"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34"},styleRules:{map:"overflow:hidden;position:relative;","missing-css":"display:none;",canary:"background-color:salmon;","ctrl-bottom-left":"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;","ctrl-bottom-right":"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;",ctrl:"clear: both; pointer-events: auto; transform: translate(0, 0);","ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner":"display: none;","ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner":"display: block; margin-top:2px","ctrl-attrib.mapboxgl-compact:hover":"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;","ctrl-attrib.mapboxgl-compact::after":'content: ""; cursor: pointer; position: absolute; background-image: url(\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E %3Cpath fill="%23333333" fill-rule="evenodd" d="M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0"/%3E %3C/svg%3E\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',"ctrl-attrib.mapboxgl-compact":"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;","ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; right: 0","ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after":"bottom: 0; left: 0","ctrl-bottom-left .mapboxgl-ctrl":"margin: 0 0 10px 10px; float: left;","ctrl-bottom-right .mapboxgl-ctrl":"margin: 0 10px 10px 0; float: right;","ctrl-attrib":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a":"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px","ctrl-attrib a:hover":"color: inherit; text-decoration: underline;","ctrl-attrib .mapbox-improve-map":"font-weight: bold; margin-left: 2px;","attrib-empty":"display: none;","ctrl-logo":'display:block; width: 21px; height: 21px; background-image: url(\'data:image/svg+xml;charset=utf-8,%3C?xml version="1.0" encoding="utf-8"?%3E %3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 21 21" style="enable-background:new 0 0 21 21;" xml:space="preserve"%3E%3Cg transform="translate(0,0.01)"%3E%3Cpath d="m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z" style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3Cpath d="M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpath d="M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z" style="opacity:0.35;enable-background:new" class="st1"/%3E%3Cpolygon points="11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 " style="opacity:0.9;fill:%23ffffff;enable-background:new" class="st0"/%3E%3C/g%3E%3C/svg%3E\')'}}},{}],884:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){var r=t.split(" "),i=r[0],a=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,c=["",""],u=[0,0];switch(i){case"top":c[0]="top",u[1]=-l;break;case"bottom":c[0]="bottom",u[1]=l}switch(a){case"left":c[1]="right",u[0]=-s;break;case"right":c[1]="left",u[0]=s}return{anchor:c[0]&&c[1]?c.join("-"):c[0]?c[0]:c[1]?c[1]:"center",offset:u}}},{"../../lib":778}],885:[function(t,e,r){"use strict";var n=t("mapbox-gl"),i=t("../../lib"),a=i.strTranslate,o=i.strScale,s=t("../../plots/get_data").getSubplotCalcData,l=t("../../constants/xmlns_namespaces"),c=t("d3"),u=t("../../components/drawing"),f=t("../../lib/svg_text_utils"),h=t("./mapbox"),p=r.constants=t("./constants");function d(t){return"string"==typeof t&&(-1!==p.styleValuesMapbox.indexOf(t)||0===t.indexOf("mapbox://"))}r.name="mapbox",r.attr="subplot",r.idRoot="mapbox",r.idRegex=r.attrRegex=i.counterRegex("mapbox"),r.attributes={subplot:{valType:"subplotid",dflt:"mapbox",editType:"calc"}},r.layoutAttributes=t("./layout_attributes"),r.supplyLayoutDefaults=t("./layout_defaults"),r.plot=function(t){var e=t._fullLayout,r=t.calcdata,a=e._subplots.mapbox;if(n.version!==p.requiredVersion)throw new Error(p.wrongVersionErrorMsg);var o=function(t,e){var r=t._fullLayout;if(""===t._context.mapboxAccessToken)return"";for(var n=[],a=[],o=!1,s=!1,l=0;l1&&i.warn(p.multipleTokensErrorMsg),n[0]):(a.length&&i.log(["Listed mapbox access token(s)",a.join(","),"but did not use a Mapbox map style, ignoring token(s)."].join(" ")),"")}(t,a);n.accessToken=o;for(var l=0;l_/2){var w=v.split("|").join("
");x.text(w).attr("data-unformatted",w).call(f.convertToTspans,t),b=u.bBox(x.node())}x.attr("transform",a(-3,8-b.height)),y.insert("rect",".static-attribution").attr({x:-b.width-6,y:-b.height-3,width:b.width+6,height:b.height+3,fill:"rgba(255, 255, 255, 0.75)"});var T=1;b.width+6>_&&(T=_/(b.width+6));var k=[n.l+n.w*h.x[1],n.t+n.h*(1-h.y[0])];y.attr("transform",a(k[0],k[1])+o(T))}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n0){for(var r=0;r0}function u(t){var e={},r={};switch(t.type){case"circle":n.extendFlat(r,{"circle-radius":t.circle.radius,"circle-color":t.color,"circle-opacity":t.opacity});break;case"line":n.extendFlat(r,{"line-width":t.line.width,"line-color":t.color,"line-opacity":t.opacity,"line-dasharray":t.line.dash});break;case"fill":n.extendFlat(r,{"fill-color":t.color,"fill-outline-color":t.fill.outlinecolor,"fill-opacity":t.opacity});break;case"symbol":var i=t.symbol,o=a(i.textposition,i.iconsize);n.extendFlat(e,{"icon-image":i.icon+"-15","icon-size":i.iconsize/10,"text-field":i.text,"text-size":i.textfont.size,"text-anchor":o.anchor,"text-offset":o.offset,"symbol-placement":i.placement}),n.extendFlat(r,{"icon-color":t.color,"text-color":i.textfont.color,"text-opacity":t.opacity});break;case"raster":n.extendFlat(r,{"raster-fade-duration":0,"raster-opacity":t.opacity})}return{layout:e,paint:r}}l.update=function(t){this.visible?this.needsNewImage(t)?this.updateImage(t):this.needsNewSource(t)?(this.removeLayer(),this.updateSource(t),this.updateLayer(t)):this.needsNewLayer(t)?this.updateLayer(t):this.updateStyle(t):(this.updateSource(t),this.updateLayer(t)),this.visible=c(t)},l.needsNewImage=function(t){return this.subplot.map.getSource(this.idSource)&&"image"===this.sourceType&&"image"===t.sourcetype&&(this.source!==t.source||JSON.stringify(this.coordinates)!==JSON.stringify(t.coordinates))},l.needsNewSource=function(t){return this.sourceType!==t.sourcetype||JSON.stringify(this.source)!==JSON.stringify(t.source)||this.layerType!==t.type},l.needsNewLayer=function(t){return this.layerType!==t.type||this.below!==this.subplot.belowLookup["layout-"+this.index]},l.lookupBelow=function(){return this.subplot.belowLookup["layout-"+this.index]},l.updateImage=function(t){this.subplot.map.getSource(this.idSource).updateImage({url:t.source,coordinates:t.coordinates});var e=this.findFollowingMapboxLayerId(this.lookupBelow());null!==e&&this.subplot.map.moveLayer(this.idLayer,e)},l.updateSource=function(t){var e=this.subplot.map;if(e.getSource(this.idSource)&&e.removeSource(this.idSource),this.sourceType=t.sourcetype,this.source=t.source,c(t)){var r=function(t){var e,r=t.sourcetype,n=t.source,a={type:r};"geojson"===r?e="data":"vector"===r?e="string"==typeof n?"url":"tiles":"raster"===r?(e="tiles",a.tileSize=256):"image"===r&&(e="url",a.coordinates=t.coordinates);a[e]=n,t.sourceattribution&&(a.attribution=i(t.sourceattribution));return a}(t);e.addSource(this.idSource,r)}},l.findFollowingMapboxLayerId=function(t){if("traces"===t)for(var e=this.subplot.getMapLayers(),r=0;r<e.length;r++){var n=e[r].id;if("string"==typeof n&&0===n.indexOf(o.traceLayerPrefix)){t=n;break}}return t},l.updateLayer=function(t){var e=this.subplot,r=u(t),n=this.lookupBelow(),i=this.findFollowingMapboxLayerId(n);this.removeLayer(),c(t)&&e.addLayer({id:this.idLayer,source:this.idSource,"source-layer":t.sourcelayer||"",type:t.type,minzoom:t.minzoom,maxzoom:t.maxzoom,layout:r.layout,paint:r.paint},i),this.layerType=t.type,this.below=n},l.updateStyle=function(t){if(c(t)){var e=u(t);this.subplot.setOptions(this.idLayer,"setLayoutProperty",e.layout),this.subplot.setOptions(this.idLayer,"setPaintProperty",e.paint)}},l.removeLayer=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer)},l.dispose=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer),t.getSource(this.idSource)&&t.removeSource(this.idSource)},e.exports=function(t,e,r){var n=new s(t,e);return n.update(r),n}},{"../../lib":778,"../../lib/svg_text_utils":803,"./constants":883,"./convert_text_opts":884}],887:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/color").defaultLine,a=t("../domain").attributes,o=t("../font_attributes"),s=t("../../traces/scatter/attributes").textposition,l=t("../../plot_api/edit_types").overrideAll,c=t("../../plot_api/plot_template").templatedArray,u=t("./constants"),f=o({});f.family.dflt="Open Sans Regular, Arial Unicode MS Regular",(e.exports=l({_arrayAttrRegexps:[n.counterRegex("mapbox",".layers",!0)],domain:a({name:"mapbox"}),accesstoken:{valType:"string",noBlank:!0,strict:!0},style:{valType:"any",values:u.styleValuesMapbox.concat(u.styleValuesNonMapbox),dflt:u.styleValueDflt},center:{lon:{valType:"number",dflt:0},lat:{valType:"number",dflt:0}},zoom:{valType:"number",dflt:1},bearing:{valType:"number",dflt:0},pitch:{valType:"number",dflt:0},layers:c("layer",{visible:{valType:"boolean",dflt:!0},sourcetype:{valType:"enumerated",values:["geojson","vector","raster","image"],dflt:"geojson"},source:{valType:"any"},sourcelayer:{valType:"string",dflt:""},sourceattribution:{valType:"string"},type:{valType:"enumerated",values:["circle","line","fill","symbol","raster"],dflt:"circle"},coordinates:{valType:"any"},below:{valType:"string"},color:{valType:"color",dflt:i},opacity:{valType:"number",min:0,max:1,dflt:1},minzoom:{valType:"number",min:0,max:24,dflt:0},maxzoom:{valType:"number",min:0,max:24,dflt:24},circle:{radius:{valType:"number",dflt:15}},line:{width:{valType:"number",dflt:2},dash:{valType:"data_array"}},fill:{outlinecolor:{valType:"color",dflt:i}},symbol:{icon:{valType:"string",dflt:"marker"},iconsize:{valType:"number",dflt:10},text:{valType:"string",dflt:""},placement:{valType:"enumerated",values:["point","line","line-center"],dflt:"point"},textfont:f,textposition:n.extendFlat({},s,{arrayOk:!1})}})},"plot","from-root")).uirevision={valType:"any",editType:"none"}},{"../../components/color":643,"../../lib":778,"../../plot_api/edit_types":810,"../../plot_api/plot_template":817,"../../traces/scatter/attributes":1187,"../domain":855,"../font_attributes":856,"./constants":883}],888:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../subplot_defaults"),a=t("../array_container_defaults"),o=t("./layout_attributes");function s(t,e,r,n){r("accesstoken",n.accessToken),r("style"),r("center.lon"),r("center.lat"),r("zoom"),r("bearing"),r("pitch"),a(t,e,{name:"layers",handleItemDefaults:l}),e._input=t}function l(t,e){function r(r,i){return n.coerce(t,e,o.layers,r,i)}if(r("visible")){var i,a=r("sourcetype"),s="raster"===a||"image"===a;r("source"),r("sourceattribution"),"vector"===a&&r("sourcelayer"),"image"===a&&r("coordinates"),s&&(i="raster");var l=r("type",i);s&&"raster"!==l&&(l=e.type="raster",n.log("Source types *raster* and *image* must drawn *raster* layer type.")),r("below"),r("color"),r("opacity"),r("minzoom"),r("maxzoom"),"circle"===l&&r("circle.radius"),"line"===l&&(r("line.width"),r("line.dash")),"fill"===l&&r("fill.outlinecolor"),"symbol"===l&&(r("symbol.icon"),r("symbol.iconsize"),r("symbol.text"),n.coerceFont(r,"symbol.textfont"),r("symbol.textposition"),r("symbol.placement"))}}e.exports=function(t,e,r){i(t,e,r,{type:"mapbox",attributes:o,handleDefaults:s,partition:"y",accessToken:e._mapboxAccessToken})}},{"../../lib":778,"../array_container_defaults":823,"../subplot_defaults":905,"./layout_attributes":887}],889:[function(t,e,r){"use strict";var n=t("mapbox-gl"),i=t("../../lib"),a=t("../../lib/geo_location_utils"),o=t("../../registry"),s=t("../cartesian/axes"),l=t("../../components/dragelement"),c=t("../../components/fx"),u=t("../../components/dragelement/helpers"),f=u.rectMode,h=u.drawMode,p=u.selectMode,d=t("../cartesian/select").prepSelect,g=t("../cartesian/select").clearSelect,m=t("../cartesian/select").clearSelectionsCache,v=t("../cartesian/select").selectOnClick,y=t("./constants"),x=t("./layers");function b(t,e){this.id=e,this.gd=t;var r=t._fullLayout,n=t._context;this.container=r._glcontainer.node(),this.isStatic=n.staticPlot,this.uid=r._uid+"-"+this.id,this.div=null,this.xaxis=null,this.yaxis=null,this.createFramework(r),this.map=null,this.accessToken=null,this.styleObj=null,this.traceHash={},this.layerList=[],this.belowLookup={},this.dragging=!1,this.wheeling=!1}var _=b.prototype;_.plot=function(t,e,r){var n,i=this,a=e[i.id];i.map&&a.accesstoken!==i.accessToken&&(i.map.remove(),i.map=null,i.styleObj=null,i.traceHash={},i.layerList=[]),n=i.map?new Promise((function(r,n){i.updateMap(t,e,r,n)})):new Promise((function(r,n){i.createMap(t,e,r,n)})),r.push(n)},_.createMap=function(t,e,r,i){var o=this,s=e[o.id],l=o.styleObj=T(s.style);o.accessToken=s.accesstoken;var c=o.map=new n.Map({container:o.div,style:l.style,center:M(s.center),zoom:s.zoom,bearing:s.bearing,pitch:s.pitch,interactive:!o.isStatic,preserveDrawingBuffer:o.isStatic,doubleClickZoom:!1,boxZoom:!1,attributionControl:!1}).addControl(new n.AttributionControl({compact:!0}));c._canvas.style.left="0px",c._canvas.style.top="0px",o.rejectOnError(i),o.isStatic||o.initFx(t,e);var u=[];u.push(new Promise((function(t){c.once("load",t)}))),u=u.concat(a.fetchTraceGeoData(t)),Promise.all(u).then((function(){o.fillBelowLookup(t,e),o.updateData(t),o.updateLayout(e),o.resolveOnRender(r)})).catch(i)},_.updateMap=function(t,e,r,n){var i=this,o=i.map,s=e[this.id];i.rejectOnError(n);var l=[],c=T(s.style);JSON.stringify(i.styleObj)!==JSON.stringify(c)&&(i.styleObj=c,o.setStyle(c.style),i.traceHash={},l.push(new Promise((function(t){o.once("styledata",t)})))),l=l.concat(a.fetchTraceGeoData(t)),Promise.all(l).then((function(){i.fillBelowLookup(t,e),i.updateData(t),i.updateLayout(e),i.resolveOnRender(r)})).catch(n)},_.fillBelowLookup=function(t,e){var r,n,i=e[this.id].layers,a=this.belowLookup={},o=!1;for(r=0;r<t.length;r++){var s=t[r][0].trace,l=s._module;"string"==typeof s.below?n=s.below:l.getBelow&&(n=l.getBelow(s,this)),""===n&&(o=!0),a["trace-"+s.uid]=n||""}for(r=0;r<i.length;r++){var c=i[r];n="string"==typeof c.below?c.below:o?"traces":"",a["layout-"+r]=n}var u,f,h={};for(u in a)h[n=a[u]]?h[n].push(u):h[n]=[u];for(n in h){var p=h[n];if(p.length>1)for(r=0;r-1&&v(e.originalEvent,n,[r.xaxis],[r.yaxis],r.id,t),i.indexOf("event")>-1&&c.click(n,e.originalEvent)}}},_.updateFx=function(t){var e=this,r=e.map,n=e.gd;if(!e.isStatic){var a,o=t.dragmode;a=f(o)?function(t,r){(t.range={})[e.id]=[c([r.xmin,r.ymin]),c([r.xmax,r.ymax])]}:function(t,r,n){(t.lassoPoints={})[e.id]=n.filtered.map(c)};var s=e.dragOptions;e.dragOptions=i.extendDeep(s||{},{dragmode:t.dragmode,element:e.div,gd:n,plotinfo:{id:e.id,domain:t[e.id].domain,xaxis:e.xaxis,yaxis:e.yaxis,fillRangeItems:a},xaxes:[e.xaxis],yaxes:[e.yaxis],subplot:e.id}),r.off("click",e.onClickInPanHandler),p(o)||h(o)?(r.dragPan.disable(),r.on("zoomstart",e.clearSelect),e.dragOptions.prepFn=function(t,r,n){d(t,r,n,e.dragOptions,o)},l.init(e.dragOptions)):(r.dragPan.enable(),r.off("zoomstart",e.clearSelect),e.div.onmousedown=null,e.onClickInPanHandler=e.onClickInPanFn(e.dragOptions),r.on("click",e.onClickInPanHandler))}function c(t){var r=e.map.unproject(t);return[r.lng,r.lat]}},_.updateFramework=function(t){var e=t[this.id].domain,r=t._size,n=this.div.style;n.width=r.w*(e.x[1]-e.x[0])+"px",n.height=r.h*(e.y[1]-e.y[0])+"px",n.left=r.l+e.x[0]*r.w+"px",n.top=r.t+(1-e.y[1])*r.h+"px",this.xaxis._offset=r.l+e.x[0]*r.w,this.xaxis._length=r.w*(e.x[1]-e.x[0]),this.yaxis._offset=r.t+(1-e.y[1])*r.h,this.yaxis._length=r.h*(e.y[1]-e.y[0])},_.updateLayers=function(t){var e,r=t[this.id].layers,n=this.layerList;if(r.length!==n.length){for(e=0;e=e.width-20?(a["text-anchor"]="start",a.x=5):(a["text-anchor"]="end",a.x=e._paper.attr("width")-7),r.attr(a);var o=r.select(".js-link-to-tool"),s=r.select(".js-link-spacer"),l=r.select(".js-sourcelinks");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text("");var r=e.append("a").attr({"xlink:xlink:href":"#",class:"link--impt link--embedview","font-weight":"bold"}).text(t._context.linkText+" "+String.fromCharCode(187));if(t._context.sendData)r.on("click",(function(){x.sendDataToCloud(t)}));else{var n=window.location.pathname.split("/"),i=window.location.search;r.attr({"xlink:xlink:show":"new","xlink:xlink:href":"/"+n[2].split(".")[0]+"/"+n[1]+i})}}(t,o),s.text(o.text()&&l.text()?" - ":"")}},x.sendDataToCloud=function(t){var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL;if(e){t.emit("plotly_beforeexport");var r=n.select(t).append("div").attr("id","hiddenform").style("display","none"),i=r.append("form").attr({action:e+"/external",method:"post",target:"_blank"});return i.append("input").attr({type:"text",name:"data"}).node().value=x.graphJson(t,!1,"keepdata"),i.node().submit(),r.remove(),t.emit("plotly_afterexport"),!1}};var w=["days","shortDays","months","shortMonths","periods","dateTime","date","time","decimal","thousands","grouping","currency"],T=["year","month","dayMonth","dayMonthYear"];function k(t,e){var r=t._context.locale;r||(r="en-US");var n=!1,i={};function a(t){for(var r=!0,a=0;a1&&O.length>1){for(o.getComponentMethod("grid","sizeDefaults")(u,l),s=0;s15&&O.length>15&&0===l.shapes.length&&0===l.images.length,l._hasCartesian=l._has("cartesian"),l._hasGeo=l._has("geo"),l._hasGL3D=l._has("gl3d"),l._hasGL2D=l._has("gl2d"),l._hasTernary=l._has("ternary"),l._hasPie=l._has("pie"),x.linkSubplots(h,l,f,a),x.cleanPlot(h,l,f,a);var N=!(!a._has||!a._has("gl2d")),j=!(!l._has||!l._has("gl2d")),U=!(!a._has||!a._has("cartesian"))||N,V=!(!l._has||!l._has("cartesian"))||j;U&&!V?a._bgLayer.remove():V&&!U&&(l._shouldCreateBgLayer=!0),a._zoomlayer&&!t._dragging&&p({_fullLayout:a}),function(t,e){var r,n=[];e.meta&&(r=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var i=0;i0){var f=1-2*s;n=Math.round(f*n),i=Math.round(f*i)}}var h=x.layoutAttributes.width.min,p=x.layoutAttributes.height.min;n1,g=!e.height&&Math.abs(r.height-i)>1;(g||d)&&(d&&(r.width=n),g&&(r.height=i)),t._initialAutoSize||(t._initialAutoSize={width:n,height:i}),x.sanitizeMargins(r)},x.supplyLayoutModuleDefaults=function(t,e,r,n){var i,a,s,l=o.componentsRegistry,u=e._basePlotModules,f=o.subplotsRegistry.cartesian;for(i in l)(s=l[i]).includeBasePlot&&s.includeBasePlot(t,e);for(var h in u.length||u.push(f),e._has("cartesian")&&(o.getComponentMethod("grid","contentDefaults")(t,e),f.finalizeSubplots(t,e)),e._subplots)e._subplots[h].sort(c.subplotSort);for(a=0;a1&&(r.l/=g,r.r/=g)}if(f){var m=(r.t+r.b)/f;m>1&&(r.t/=m,r.b/=m)}var v=void 0!==r.xl?r.xl:r.x,y=void 0!==r.xr?r.xr:r.x,b=void 0!==r.yt?r.yt:r.y,_=void 0!==r.yb?r.yb:r.y;h[e]={l:{val:v,size:r.l+d},r:{val:y,size:r.r+d},b:{val:_,size:r.b+d},t:{val:b,size:r.t+d}},p[e]=1}else delete h[e],delete p[e];if(!n._replotting)return x.doAutoMargin(t)}},x.doAutoMargin=function(t){var e=t._fullLayout,r=e.width,n=e.height;e._size||(e._size={}),C(e);var i=e._size,s=e.margin,l=c.extendFlat({},i),u=s.l,f=s.r,p=s.t,d=s.b,g=e._pushmargin,m=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var v in g)m[v]||delete g[v];for(var y in g.base={l:{val:0,size:u},r:{val:1,size:f},t:{val:1,size:p},b:{val:0,size:d}},g){var b=g[y].l||{},_=g[y].b||{},w=b.val,T=b.size,k=_.val,M=_.size;for(var A in g){if(a(T)&&g[A].r){var S=g[A].r.val,E=g[A].r.size;if(S>w){var L=(T*S+(E-r)*w)/(S-w),I=(E*(1-w)+(T-r)*(1-S))/(S-w);L+I>u+f&&(u=L,f=I)}}if(a(M)&&g[A].t){var P=g[A].t.val,z=g[A].t.size;if(P>k){var O=(M*P+(z-n)*k)/(P-k),D=(z*(1-k)+(M-n)*(1-P))/(P-k);O+D>d+p&&(d=O,p=D)}}}}}var R=c.constrain(r-s.l-s.r,2,64),F=c.constrain(n-s.t-s.b,2,64),B=Math.max(0,r-R),N=Math.max(0,n-F);if(B){var j=(u+f)/B;j>1&&(u/=j,f/=j)}if(N){var U=(d+p)/N;U>1&&(d/=U,p/=U)}if(i.l=Math.round(u),i.r=Math.round(f),i.t=Math.round(p),i.b=Math.round(d),i.p=Math.round(s.pad),i.w=Math.round(r)-i.l-i.r,i.h=Math.round(n)-i.t-i.b,!e._replotting&&x.didMarginChange(l,i)){"_redrawFromAutoMarginCount"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var V=3*(1+Object.keys(m).length);if(e._redrawFromAutoMarginCount0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push((function(){n=!0})),r.redraw&&t._transitionData._interruptCallbacks.push((function(){return o.call("redraw",t)})),t._transitionData._interruptCallbacks.push((function(){t.emit("plotly_transitioninterrupted",[])}));var a=0,s=0;function l(){return a++,function(){s++,n||s!==a||function(e){if(!t._transitionData)return;(function(t){if(t)for(;t.length;)t.shift()})(t._transitionData._interruptCallbacks),Promise.resolve().then((function(){if(r.redraw)return o.call("redraw",t)})).then((function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit("plotly_transitioned",[])})).then(e)}(i)}}r.runFn(l),setTimeout(l())}))}],a=c.syncOrAsync(i,t);return a&&a.then||(a=Promise.resolve()),a.then((function(){return t}))}x.didMarginChange=function(t,e){for(var r=0;r1)return!0}return!1},x.graphJson=function(t,e,r,n,i,a){(i&&e&&!t._fullData||i&&!e&&!t._fullLayout)&&x.supplyDefaults(t);var o=i?t._fullData:t.data,s=i?t._fullLayout:t.layout,l=(t._transitionData||{})._frames;function u(t,e){if("function"==typeof t)return e?"_function_":null;if(c.isPlainObject(t)){var n,i={};return Object.keys(t).sort().forEach((function(a){if(-1===["_","["].indexOf(a.charAt(0)))if("function"!=typeof t[a]){if("keepdata"===r){if("src"===a.substr(a.length-3))return}else if("keepstream"===r){if("string"==typeof(n=t[a+"src"])&&n.indexOf(":")>0&&!c.isPlainObject(t.stream))return}else if("keepall"!==r&&"string"==typeof(n=t[a+"src"])&&n.indexOf(":")>0)return;i[a]=u(t[a],e)}else e&&(i[a]="_function")})),i}return Array.isArray(t)?t.map((function(t){return u(t,e)})):c.isTypedArray(t)?c.simpleMap(t,c.identity):c.isJSDate(t)?c.ms2DateTimeLocal(+t):t}var f={data:(o||[]).map((function(t){var r=u(t);return e&&delete r.fit,r}))};if(!e&&(f.layout=u(s),i)){var h=s._size;f.layout.computed={margin:{b:h.b,l:h.l,r:h.r,t:h.t}}}return t.framework&&t.framework.isPolar&&(f=t.framework.getConfig()),l&&(f.frames=u(l)),a&&(f.config=u(t._context,!0)),"object"===n?f:JSON.stringify(f)},x.modifyFrames=function(t,e){var r,n,i,a=t._transitionData._frames,o=t._transitionData._frameHash;for(r=0;r=0;a--)if(s[a].enabled){r._indexToPoints=s[a]._indexToPoints;break}n&&n.calc&&(o=n.calc(t,r))}Array.isArray(o)&&o[0]||(o=[{x:f,y:f}]),o[0].t||(o[0].t={}),o[0].trace=r,d[e]=o}}for(z(l,u,p),i=0;i1e-10?t:0}function h(t,e,r){e=e||0,r=r||0;for(var n=t.length,i=new Array(n),a=0;a0?r:1/0})),i=n.mod(r+1,e.length);return[e[r],e[i]]},findIntersectionXY:c,findXYatLength:function(t,e,r,n){var i=-e*r,a=e*e+1,o=2*(e*i-r),s=i*i+r*r-t*t,l=Math.sqrt(o*o-4*a*s),c=(-o+l)/(2*a),u=(-o-l)/(2*a);return[[c,e*c+i+n],[u,e*u+i+n]]},clampTiny:f,pathPolygon:function(t,e,r,n,i,a){return"M"+h(u(t,e,r,n),i,a).join("L")},pathPolygonAnnulus:function(t,e,r,n,i,a,o){var s,l;t=0?h.angularAxis.domain:n.extent(T),E=Math.abs(T[1]-T[0]);M&&!k&&(E=0);var C=S.slice();A&&k&&(C[1]+=E);var L=h.angularAxis.ticksCount||4;L>8&&(L=L/(L/8)+L%8),h.angularAxis.ticksStep&&(L=(C[1]-C[0])/L);var I=h.angularAxis.ticksStep||(C[1]-C[0])/(L*(h.minorTicks+1));w&&(I=Math.max(Math.round(I),1)),C[2]||(C[2]=I);var P=n.range.apply(this,C);if(P=P.map((function(t,e){return parseFloat(t.toPrecision(12))})),s=n.scale.linear().domain(C.slice(0,2)).range("clockwise"===h.direction?[0,360]:[360,0]),u.layout.angularAxis.domain=s.domain(),u.layout.angularAxis.endPadding=A?E:0,"undefined"==typeof(t=n.select(this).select("svg.chart-root"))||t.empty()){var z=(new DOMParser).parseFromString("' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '' + '","application/xml"),O=this.appendChild(this.ownerDocument.importNode(z.documentElement,!0));t=n.select(O)}t.select(".guides-group").style({"pointer-events":"none"}),t.select(".angular.axis-group").style({"pointer-events":"none"}),t.select(".radial.axis-group").style({"pointer-events":"none"});var D,R=t.select(".chart-group"),F={fill:"none",stroke:h.tickColor},B={"font-size":h.font.size,"font-family":h.font.family,fill:h.font.color,"text-shadow":["-1px 0px","1px -1px","-1px 1px","1px 1px"].map((function(t,e){return" "+t+" 0 "+h.font.outlineColor})).join(",")};if(h.showLegend){D=t.select(".legend-group").attr({transform:"translate("+[x,h.margin.top]+")"}).style({display:"block"});var N=p.map((function(t,e){var r=o.util.cloneJson(t);return r.symbol="DotPlot"===t.geometry?t.dotType||"circle":"LinePlot"!=t.geometry?"square":"line",r.visibleInLegend="undefined"==typeof t.visibleInLegend||t.visibleInLegend,r.color="LinePlot"===t.geometry?t.strokeColor:t.color,r}));o.Legend().config({data:p.map((function(t,e){return t.name||"Element"+e})),legendConfig:i({},o.Legend.defaultConfig().legendConfig,{container:D,elements:N,reverseOrder:h.legend.reverseOrder})})();var j=D.node().getBBox();x=Math.min(h.width-j.width-h.margin.left-h.margin.right,h.height-h.margin.top-h.margin.bottom)/2,x=Math.max(10,x),_=[h.margin.left+x,h.margin.top+x],r.range([0,x]),u.layout.radialAxis.domain=r.domain(),D.attr("transform","translate("+[_[0]+x,_[1]-x]+")")}else D=t.select(".legend-group").style({display:"none"});t.attr({width:h.width,height:h.height}).style({opacity:h.opacity}),R.attr("transform","translate("+_+")").style({cursor:"crosshair"});var U=[(h.width-(h.margin.left+h.margin.right+2*x+(j?j.width:0)))/2,(h.height-(h.margin.top+h.margin.bottom+2*x))/2];if(U[0]=Math.max(0,U[0]),U[1]=Math.max(0,U[1]),t.select(".outer-group").attr("transform","translate("+U+")"),h.title&&h.title.text){var V=t.select("g.title-group text").style(B).text(h.title.text),q=V.node().getBBox();V.attr({x:_[0]-q.width/2,y:_[1]-x-20})}var H=t.select(".radial.axis-group");if(h.radialAxis.gridLinesVisible){var G=H.selectAll("circle.grid-circle").data(r.ticks(5));G.enter().append("circle").attr({class:"grid-circle"}).style(F),G.attr("r",r),G.exit().remove()}H.select("circle.outside-circle").attr({r:x}).style(F);var Y=t.select("circle.background-circle").attr({r:x}).style({fill:h.backgroundColor,stroke:h.stroke});function W(t,e){return s(t)%360+h.orientation}if(h.radialAxis.visible){var X=n.svg.axis().scale(r).ticks(5).tickSize(5);H.call(X).attr({transform:"rotate("+h.radialAxis.orientation+")"}),H.selectAll(".domain").style(F),H.selectAll("g>text").text((function(t,e){return this.textContent+h.radialAxis.ticksSuffix})).style(B).style({"text-anchor":"start"}).attr({x:0,y:0,dx:0,dy:0,transform:function(t,e){return"horizontal"===h.radialAxis.tickOrientation?"rotate("+-h.radialAxis.orientation+") translate("+[0,B["font-size"]]+")":"translate("+[0,B["font-size"]]+")"}}),H.selectAll("g>line").style({stroke:"black"})}var Z=t.select(".angular.axis-group").selectAll("g.angular-tick").data(P),J=Z.enter().append("g").classed("angular-tick",!0);Z.attr({transform:function(t,e){return"rotate("+W(t)+")"}}).style({display:h.angularAxis.visible?"block":"none"}),Z.exit().remove(),J.append("line").classed("grid-line",!0).classed("major",(function(t,e){return e%(h.minorTicks+1)==0})).classed("minor",(function(t,e){return!(e%(h.minorTicks+1)==0)})).style(F),J.selectAll(".minor").style({stroke:h.minorTickColor}),Z.select("line.grid-line").attr({x1:h.tickLength?x-h.tickLength:0,x2:x}).style({display:h.angularAxis.gridLinesVisible?"block":"none"}),J.append("text").classed("axis-text",!0).style(B);var K=Z.select("text.axis-text").attr({x:x+h.labelOffset,dy:a+"em",transform:function(t,e){var r=W(t),n=x+h.labelOffset,i=h.angularAxis.tickOrientation;return"horizontal"==i?"rotate("+-r+" "+n+" 0)":"radial"==i?r<270&&r>90?"rotate(180 "+n+" 0)":null:"rotate("+(r<=180&&r>0?-90:90)+" "+n+" 0)"}}).style({"text-anchor":"middle",display:h.angularAxis.labelsVisible?"block":"none"}).text((function(t,e){return e%(h.minorTicks+1)!=0?"":w?w[t]+h.angularAxis.ticksSuffix:t+h.angularAxis.ticksSuffix})).style(B);h.angularAxis.rewriteTicks&&K.text((function(t,e){return e%(h.minorTicks+1)!=0?"":h.angularAxis.rewriteTicks(this.textContent,e)}));var Q=n.max(R.selectAll(".angular-tick text")[0].map((function(t,e){return t.getCTM().e+t.getBBox().width})));D.attr({transform:"translate("+[x+Q,h.margin.top]+")"});var $=t.select("g.geometry-group").selectAll("g").size()>0,tt=t.select("g.geometry-group").selectAll("g.geometry").data(p);if(tt.enter().append("g").attr({class:function(t,e){return"geometry geometry"+e}}),tt.exit().remove(),p[0]||$){var et=[];p.forEach((function(t,e){var n={};n.radialScale=r,n.angularScale=s,n.container=tt.filter((function(t,r){return r==e})),n.geometry=t.geometry,n.orientation=h.orientation,n.direction=h.direction,n.index=e,et.push({data:t,geometryConfig:n})}));var rt=n.nest().key((function(t,e){return"undefined"!=typeof t.data.groupId||"unstacked"})).entries(et),nt=[];rt.forEach((function(t,e){"unstacked"===t.key?nt=nt.concat(t.values.map((function(t,e){return[t]}))):nt.push(t.values)})),nt.forEach((function(t,e){var r;r=Array.isArray(t)?t[0].geometryConfig.geometry:t.geometryConfig.geometry;var n=t.map((function(t,e){return i(o[r].defaultConfig(),t)}));o[r]().config(n)()}))}var it,at,ot=t.select(".guides-group"),st=t.select(".tooltips-group"),lt=o.tooltipPanel().config({container:st,fontSize:8})(),ct=o.tooltipPanel().config({container:st,fontSize:8})(),ut=o.tooltipPanel().config({container:st,hasTick:!0})();if(!k){var ft=ot.select("line").attr({x1:0,y1:0,y2:0}).style({stroke:"grey","pointer-events":"none"});R.on("mousemove.angular-guide",(function(t,e){var r=o.util.getMousePos(Y).angle;ft.attr({x2:-x,transform:"rotate("+r+")"}).style({opacity:.5});var n=(r+180+360-h.orientation)%360;it=s.invert(n);var i=o.util.convertToCartesian(x+12,r+180);lt.text(o.util.round(it)).move([i[0]+_[0],i[1]+_[1]])})).on("mouseout.angular-guide",(function(t,e){ot.select("line").style({opacity:0})}))}var ht=ot.select("circle").style({stroke:"grey",fill:"none"});R.on("mousemove.radial-guide",(function(t,e){var n=o.util.getMousePos(Y).radius;ht.attr({r:n}).style({opacity:.5}),at=r.invert(o.util.getMousePos(Y).radius);var i=o.util.convertToCartesian(n,h.radialAxis.orientation);ct.text(o.util.round(at)).move([i[0]+_[0],i[1]+_[1]])})).on("mouseout.radial-guide",(function(t,e){ht.style({opacity:0}),ut.hide(),lt.hide(),ct.hide()})),t.selectAll(".geometry-group .mark").on("mouseover.tooltip",(function(e,r){var i=n.select(this),a=this.style.fill,s="black",l=this.style.opacity||1;if(i.attr({"data-opacity":l}),a&&"none"!==a){i.attr({"data-fill":a}),s=n.hsl(a).darker().toString(),i.style({fill:s,opacity:1});var c={t:o.util.round(e[0]),r:o.util.round(e[1])};k&&(c.t=w[e[0]]);var u="t: "+c.t+", r: "+c.r,f=this.getBoundingClientRect(),h=t.node().getBoundingClientRect(),p=[f.left+f.width/2-U[0]-h.left,f.top+f.height/2-U[1]-h.top];ut.config({color:s}).text(u),ut.move(p)}else a=this.style.stroke||"black",i.attr({"data-stroke":a}),s=n.hsl(a).darker().toString(),i.style({stroke:s,opacity:1})})).on("mousemove.tooltip",(function(t,e){if(0!=n.event.which)return!1;n.select(this).attr("data-fill")&&ut.show()})).on("mouseout.tooltip",(function(t,e){ut.hide();var r=n.select(this),i=r.attr("data-fill");i?r.style({fill:i,opacity:r.attr("data-opacity")}):r.style({stroke:r.attr("data-stroke"),opacity:r.attr("data-opacity")})}))}))}(c),this},h.config=function(t){if(!arguments.length)return l;var e=o.util.cloneJson(t);return e.data.forEach((function(t,e){l.data[e]||(l.data[e]={}),i(l.data[e],o.Axis.defaultConfig().data[0]),i(l.data[e],t)})),i(l.layout,o.Axis.defaultConfig().layout),i(l.layout,e.layout),this},h.getLiveConfig=function(){return u},h.getinputConfig=function(){return c},h.radialScale=function(t){return r},h.angularScale=function(t){return s},h.svg=function(){return t},n.rebind(h,f,"on"),h},o.Axis.defaultConfig=function(t,e){return{data:[{t:[1,2,3,4],r:[10,11,12,13],name:"Line1",geometry:"LinePlot",color:null,strokeDash:"solid",strokeColor:null,strokeSize:"1",visibleInLegend:!0,opacity:1}],layout:{defaultColorRange:n.scale.category10().range(),title:null,height:450,width:500,margin:{top:40,right:40,bottom:40,left:40},font:{size:12,color:"gray",outlineColor:"white",family:"Tahoma, sans-serif"},direction:"clockwise",orientation:0,labelOffset:10,radialAxis:{domain:null,orientation:-45,ticksSuffix:"",visible:!0,gridLinesVisible:!0,tickOrientation:"horizontal",rewriteTicks:null},angularAxis:{domain:[0,360],ticksSuffix:"",visible:!0,gridLinesVisible:!0,labelsVisible:!0,tickOrientation:"horizontal",rewriteTicks:null,ticksCount:null,ticksStep:null},minorTicks:0,tickLength:null,tickColor:"silver",minorTickColor:"#eee",backgroundColor:"none",needsEndSpacing:null,showLegend:!0,legend:{reverseOrder:!1},opacity:1}}},o.util={},o.DATAEXTENT="dataExtent",o.AREA="AreaChart",o.LINE="LinePlot",o.DOT="DotPlot",o.BAR="BarChart",o.util._override=function(t,e){for(var r in t)r in e&&(e[r]=t[r])},o.util._extend=function(t,e){for(var r in t)e[r]=t[r]},o.util._rndSnd=function(){return 2*Math.random()-1+(2*Math.random()-1)+(2*Math.random()-1)},o.util.dataFromEquation2=function(t,e){var r=e||6;return n.range(0,360+r,r).map((function(e,r){var n=e*Math.PI/180;return[e,t(n)]}))},o.util.dataFromEquation=function(t,e,r){var i=e||6,a=[],o=[];n.range(0,360+i,i).forEach((function(e,r){var n=e*Math.PI/180,i=t(n);a.push(e),o.push(i)}));var s={t:a,r:o};return r&&(s.name=r),s},o.util.ensureArray=function(t,e){if("undefined"==typeof t)return null;var r=[].concat(t);return n.range(e).map((function(t,e){return r[e]||r[0]}))},o.util.fillArrays=function(t,e,r){return e.forEach((function(e,n){t[e]=o.util.ensureArray(t[e],r)})),t},o.util.cloneJson=function(t){return JSON.parse(JSON.stringify(t))},o.util.validateKeys=function(t,e){"string"==typeof e&&(e=e.split("."));var r=e.shift();return t[r]&&(!e.length||objHasKeys(t[r],e))},o.util.sumArrays=function(t,e){return n.zip(t,e).map((function(t,e){return n.sum(t)}))},o.util.arrayLast=function(t){return t[t.length-1]},o.util.arrayEqual=function(t,e){for(var r=Math.max(t.length,e.length,1);r-- >=0&&t[r]===e[r];);return-2===r},o.util.flattenArray=function(t){for(var e=[];!o.util.arrayEqual(e,t);)e=t,t=[].concat.apply([],t);return t},o.util.deduplicate=function(t){return t.filter((function(t,e,r){return r.indexOf(t)==e}))},o.util.convertToCartesian=function(t,e){var r=e*Math.PI/180;return[t*Math.cos(r),t*Math.sin(r)]},o.util.round=function(t,e){var r=e||2,n=Math.pow(10,r);return Math.round(t*n)/n},o.util.getMousePos=function(t){var e=n.mouse(t.node()),r=e[0],i=e[1],a={};return a.x=r,a.y=i,a.pos=e,a.angle=180*(Math.atan2(i,r)+Math.PI)/Math.PI,a.radius=Math.sqrt(r*r+i*i),a},o.util.duplicatesCount=function(t){for(var e,r={},n={},i=0,a=t.length;i0)){var l=n.select(this.parentNode).selectAll("path.line").data([0]);l.enter().insert("path"),l.attr({class:"line",d:u(s),transform:function(t,r){return"rotate("+(e.orientation+90)+")"},"pointer-events":"none"}).style({fill:function(t,e){return d.fill(r,i,a)},"fill-opacity":0,stroke:function(t,e){return d.stroke(r,i,a)},"stroke-width":function(t,e){return d["stroke-width"](r,i,a)},"stroke-dasharray":function(t,e){return d["stroke-dasharray"](r,i,a)},opacity:function(t,e){return d.opacity(r,i,a)},display:function(t,e){return d.display(r,i,a)}})}};var f=e.angularScale.range(),h=Math.abs(f[1]-f[0])/o[0].length*Math.PI/180,p=n.svg.arc().startAngle((function(t){return-h/2})).endAngle((function(t){return h/2})).innerRadius((function(t){return e.radialScale(l+(t[2]||0))})).outerRadius((function(t){return e.radialScale(l+(t[2]||0))+e.radialScale(t[1])}));c.arc=function(t,r,i){n.select(this).attr({class:"mark arc",d:p,transform:function(t,r){return"rotate("+(e.orientation+s(t[0])+90)+")"}})};var d={fill:function(e,r,n){return t[n].data.color},stroke:function(e,r,n){return t[n].data.strokeColor},"stroke-width":function(e,r,n){return t[n].data.strokeSize+"px"},"stroke-dasharray":function(e,n,i){return r[t[i].data.strokeDash]},opacity:function(e,r,n){return t[n].data.opacity},display:function(e,r,n){return"undefined"==typeof t[n].data.visible||t[n].data.visible?"block":"none"}},g=n.select(this).selectAll("g.layer").data(o);g.enter().append("g").attr({class:"layer"});var m=g.selectAll("path.mark").data((function(t,e){return t}));m.enter().append("path").attr({class:"mark"}),m.style(d).each(c[e.geometryType]),m.exit().remove(),g.exit().remove()}))}return a.config=function(e){return arguments.length?(e.forEach((function(e,r){t[r]||(t[r]={}),i(t[r],o.PolyChart.defaultConfig()),i(t[r],e)})),this):t},a.getColorScale=function(){},n.rebind(a,e,"on"),a},o.PolyChart.defaultConfig=function(){return{data:{name:"geom1",t:[[1,2,3,4]],r:[[1,2,3,4]],dotType:"circle",dotSize:64,dotVisible:!1,barWidth:20,color:"#ffa500",strokeSize:1,strokeColor:"silver",strokeDash:"solid",opacity:1,index:0,visible:!0,visibleInLegend:!0},geometryConfig:{geometry:"LinePlot",geometryType:"arc",direction:"clockwise",orientation:0,container:"body",radialScale:null,angularScale:null,colorScale:n.scale.category20()}}},o.BarChart=function(){return o.PolyChart()},o.BarChart.defaultConfig=function(){return{geometryConfig:{geometryType:"bar"}}},o.AreaChart=function(){return o.PolyChart()},o.AreaChart.defaultConfig=function(){return{geometryConfig:{geometryType:"arc"}}},o.DotPlot=function(){return o.PolyChart()},o.DotPlot.defaultConfig=function(){return{geometryConfig:{geometryType:"dot",dotType:"circle"}}},o.LinePlot=function(){return o.PolyChart()},o.LinePlot.defaultConfig=function(){return{geometryConfig:{geometryType:"line"}}},o.Legend=function(){var t=o.Legend.defaultConfig(),e=n.dispatch("hover");function r(){var e=t.legendConfig,a=t.data.map((function(t,r){return[].concat(t).map((function(t,n){var a=i({},e.elements[r]);return a.name=t,a.color=[].concat(e.elements[r].color)[n],a}))})),o=n.merge(a);o=o.filter((function(t,r){return e.elements[r]&&(e.elements[r].visibleInLegend||"undefined"==typeof e.elements[r].visibleInLegend)})),e.reverseOrder&&(o=o.reverse());var s=e.container;("string"==typeof s||s.nodeName)&&(s=n.select(s));var l=o.map((function(t,e){return t.color})),c=e.fontSize,u=null==e.isContinuous?"number"==typeof o[0]:e.isContinuous,f=u?e.height:c*o.length,h=s.classed("legend-group",!0).selectAll("svg").data([0]),p=h.enter().append("svg").attr({width:300,height:f+c,xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",version:"1.1"});p.append("g").classed("legend-axis",!0),p.append("g").classed("legend-marks",!0);var d=n.range(o.length),g=n.scale[u?"linear":"ordinal"]().domain(d).range(l),m=n.scale[u?"linear":"ordinal"]().domain(d)[u?"range":"rangePoints"]([0,f]);if(u){var v=h.select(".legend-marks").append("defs").append("linearGradient").attr({id:"grad1",x1:"0%",y1:"0%",x2:"0%",y2:"100%"}).selectAll("stop").data(l);v.enter().append("stop"),v.attr({offset:function(t,e){return e/(l.length-1)*100+"%"}}).style({"stop-color":function(t,e){return t}}),h.append("rect").classed("legend-mark",!0).attr({height:e.height,width:e.colorBandWidth,fill:"url(#grad1)"})}else{var y=h.select(".legend-marks").selectAll("path.legend-mark").data(o);y.enter().append("path").classed("legend-mark",!0),y.attr({transform:function(t,e){return"translate("+[c/2,m(e)+c/2]+")"},d:function(t,e){var r,i,a,o=t.symbol;return a=3*(i=c),"line"===(r=o)?"M"+[[-i/2,-i/12],[i/2,-i/12],[i/2,i/12],[-i/2,i/12]]+"Z":-1!=n.svg.symbolTypes.indexOf(r)?n.svg.symbol().type(r).size(a)():n.svg.symbol().type("square").size(a)()},fill:function(t,e){return g(e)}}),y.exit().remove()}var x=n.svg.axis().scale(m).orient("right"),b=h.select("g.legend-axis").attr({transform:"translate("+[u?e.colorBandWidth:c,c/2]+")"}).call(x);return b.selectAll(".domain").style({fill:"none",stroke:"none"}),b.selectAll("line").style({fill:"none",stroke:u?e.textColor:"none"}),b.selectAll("text").style({fill:e.textColor,"font-size":e.fontSize}).text((function(t,e){return o[e].name})),r}return r.config=function(e){return arguments.length?(i(t,e),this):t},n.rebind(r,e,"on"),r},o.Legend.defaultConfig=function(t,e){return{data:["a","b","c"],legendConfig:{elements:[{symbol:"line",color:"red"},{symbol:"square",color:"yellow"},{symbol:"diamond",color:"limegreen"}],height:150,colorBandWidth:30,fontSize:12,container:"body",isContinuous:null,textColor:"grey",reverseOrder:!1}}},o.tooltipPanel=function(){var t,e,r,a={container:null,hasTick:!1,fontSize:12,color:"white",padding:5},s="tooltip-"+o.tooltipPanel.uid++,l=10,c=function(){var n=(t=a.container.selectAll("g."+s).data([0])).enter().append("g").classed(s,!0).style({"pointer-events":"none",display:"none"});return r=n.append("path").style({fill:"white","fill-opacity":.9}).attr({d:"M0 0"}),e=n.append("text").attr({dx:a.padding+l,dy:.3*+a.fontSize}),c};return c.text=function(i){var o=n.hsl(a.color).l,s=o>=.5?"#aaa":"white",u=o>=.5?"black":"white",f=i||"";e.style({fill:u,"font-size":a.fontSize+"px"}).text(f);var h=a.padding,p=e.node().getBBox(),d={fill:a.color,stroke:s,"stroke-width":"2px"},g=p.width+2*h+l,m=p.height+2*h;return r.attr({d:"M"+[[l,-m/2],[l,-m/4],[a.hasTick?0:l,0],[l,m/4],[l,m/2],[g,m/2],[g,-m/2]].join("L")+"Z"}).style(d),t.attr({transform:"translate("+[l,-m/2+2*h]+")"}),t.style({display:"block"}),c},c.move=function(e){if(t)return t.attr({transform:"translate("+[e[0],e[1]]+")"}).style({display:"block"}),c},c.hide=function(){if(t)return t.style({display:"none"}),c},c.show=function(){if(t)return t.style({display:"block"}),c},c.config=function(t){return i(a,t),c},c},o.tooltipPanel.uid=1,o.adapter={},o.adapter.plotly=function(){var t={convert:function(t,e){var r={};if(t.data&&(r.data=t.data.map((function(t,r){var n=i({},t);return[[n,["marker","color"],["color"]],[n,["marker","opacity"],["opacity"]],[n,["marker","line","color"],["strokeColor"]],[n,["marker","line","dash"],["strokeDash"]],[n,["marker","line","width"],["strokeSize"]],[n,["marker","symbol"],["dotType"]],[n,["marker","size"],["dotSize"]],[n,["marker","barWidth"],["barWidth"]],[n,["line","interpolation"],["lineInterpolation"]],[n,["showlegend"],["visibleInLegend"]]].forEach((function(t,r){o.util.translator.apply(null,t.concat(e))})),e||delete n.marker,e&&delete n.groupId,e?("LinePlot"===n.geometry?(n.type="scatter",!0===n.dotVisible?(delete n.dotVisible,n.mode="lines+markers"):n.mode="lines"):"DotPlot"===n.geometry?(n.type="scatter",n.mode="markers"):"AreaChart"===n.geometry?n.type="area":"BarChart"===n.geometry&&(n.type="bar"),delete n.geometry):("scatter"===n.type?"lines"===n.mode?n.geometry="LinePlot":"markers"===n.mode?n.geometry="DotPlot":"lines+markers"===n.mode&&(n.geometry="LinePlot",n.dotVisible=!0):"area"===n.type?n.geometry="AreaChart":"bar"===n.type&&(n.geometry="BarChart"),delete n.mode,delete n.type),n})),!e&&t.layout&&"stack"===t.layout.barmode)){var a=o.util.duplicates(r.data.map((function(t,e){return t.geometry})));r.data.forEach((function(t,e){var n=a.indexOf(t.geometry);-1!=n&&(r.data[e].groupId=n)}))}if(t.layout){var s=i({},t.layout);if([[s,["plot_bgcolor"],["backgroundColor"]],[s,["showlegend"],["showLegend"]],[s,["radialaxis"],["radialAxis"]],[s,["angularaxis"],["angularAxis"]],[s.angularaxis,["showline"],["gridLinesVisible"]],[s.angularaxis,["showticklabels"],["labelsVisible"]],[s.angularaxis,["nticks"],["ticksCount"]],[s.angularaxis,["tickorientation"],["tickOrientation"]],[s.angularaxis,["ticksuffix"],["ticksSuffix"]],[s.angularaxis,["range"],["domain"]],[s.angularaxis,["endpadding"],["endPadding"]],[s.radialaxis,["showline"],["gridLinesVisible"]],[s.radialaxis,["tickorientation"],["tickOrientation"]],[s.radialaxis,["ticksuffix"],["ticksSuffix"]],[s.radialaxis,["range"],["domain"]],[s.angularAxis,["showline"],["gridLinesVisible"]],[s.angularAxis,["showticklabels"],["labelsVisible"]],[s.angularAxis,["nticks"],["ticksCount"]],[s.angularAxis,["tickorientation"],["tickOrientation"]],[s.angularAxis,["ticksuffix"],["ticksSuffix"]],[s.angularAxis,["range"],["domain"]],[s.angularAxis,["endpadding"],["endPadding"]],[s.radialAxis,["showline"],["gridLinesVisible"]],[s.radialAxis,["tickorientation"],["tickOrientation"]],[s.radialAxis,["ticksuffix"],["ticksSuffix"]],[s.radialAxis,["range"],["domain"]],[s.font,["outlinecolor"],["outlineColor"]],[s.legend,["traceorder"],["reverseOrder"]],[s,["labeloffset"],["labelOffset"]],[s,["defaultcolorrange"],["defaultColorRange"]]].forEach((function(t,r){o.util.translator.apply(null,t.concat(e))})),e?("undefined"!=typeof s.tickLength&&(s.angularaxis.ticklen=s.tickLength,delete s.tickLength),s.tickColor&&(s.angularaxis.tickcolor=s.tickColor,delete s.tickColor)):(s.angularAxis&&"undefined"!=typeof s.angularAxis.ticklen&&(s.tickLength=s.angularAxis.ticklen),s.angularAxis&&"undefined"!=typeof s.angularAxis.tickcolor&&(s.tickColor=s.angularAxis.tickcolor)),s.legend&&"boolean"!=typeof s.legend.reverseOrder&&(s.legend.reverseOrder="normal"!=s.legend.reverseOrder),s.legend&&"boolean"==typeof s.legend.traceorder&&(s.legend.traceorder=s.legend.traceorder?"reversed":"normal",delete s.legend.reverseOrder),s.margin&&"undefined"!=typeof s.margin.t){var l=["t","r","b","l","pad"],c=["top","right","bottom","left","pad"],u={};n.entries(s.margin).forEach((function(t,e){u[c[l.indexOf(t.key)]]=t.value})),s.margin=u}e&&(delete s.needsEndSpacing,delete s.minorTickColor,delete s.minorTicks,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksStep,delete s.angularaxis.rewriteTicks,delete s.angularaxis.nticks,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksStep,delete s.radialaxis.rewriteTicks,delete s.radialaxis.nticks),r.layout=s}return r}};return t}},{"../../../constants/alignment":745,"../../../lib":778,d3:169}],901:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../../lib"),a=t("../../../components/color"),o=t("./micropolar"),s=t("./undo_manager"),l=i.extendDeepAll,c=e.exports={};c.framework=function(t){var e,r,i,a,u,f=new s;function h(r,s){return s&&(u=s),n.select(n.select(u).node().parentNode).selectAll(".svg-container>*:not(.chart-root)").remove(),e=e?l(e,r):r,i||(i=o.Axis()),a=o.adapter.plotly().convert(e),i.config(a).render(u),t.data=e.data,t.layout=e.layout,c.fillLayout(t),e}return h.isPolar=!0,h.svg=function(){return i.svg()},h.getConfig=function(){return e},h.getLiveConfig=function(){return o.adapter.plotly().convert(i.getLiveConfig(),!0)},h.getLiveScales=function(){return{t:i.angularScale(),r:i.radialScale()}},h.setUndoPoint=function(){var t,n,i=this,a=o.util.cloneJson(e);t=a,n=r,f.add({undo:function(){n&&i(n)},redo:function(){i(t)}}),r=o.util.cloneJson(a)},h.undo=function(){f.undo()},h.redo=function(){f.redo()},h},c.fillLayout=function(t){var e=n.select(t).selectAll(".plot-container"),r=e.selectAll(".svg-container"),i=t.framework&&t.framework.svg&&t.framework.svg(),o={width:800,height:600,paper_bgcolor:a.background,_container:e,_paperdiv:r,_paper:i};t._fullLayout=l(o,t.layout)}},{"../../../components/color":643,"../../../lib":778,"./micropolar":900,"./undo_manager":902,d3:169}],902:[function(t,e,r){"use strict";e.exports=function(){var t,e=[],r=-1,n=!1;function i(t,e){return t?(n=!0,t[e](),n=!1,this):this}return{add:function(t){return n||(e.splice(r+1,e.length-r),e.push(t),r=e.length-1),this},setCallback:function(e){t=e},undo:function(){var n=e[r];return n?(i(n,"undo"),r-=1,t&&t(n.undo),this):this},redo:function(){var n=e[r+1];return n?(i(n,"redo"),r+=1,t&&t(n.redo),this):this},clear:function(){e=[],r=-1},hasUndo:function(){return-1!==r},hasRedo:function(){return r=90||s>90&&l>=450?1:u<=0&&h<=0?0:Math.max(u,h);e=s<=180&&l>=180||s>180&&l>=540?-1:c>=0&&f>=0?0:Math.min(c,f);r=s<=270&&l>=270||s>270&&l>=630?-1:u>=0&&h>=0?0:Math.min(u,h);n=l>=360?1:c<=0&&f<=0?0:Math.max(c,f);return[e,r,n,i]}(p),b=x[2]-x[0],_=x[3]-x[1],w=h/f,T=Math.abs(_/b);w>T?(d=f,y=(h-(g=f*T))/n.h/2,m=[o[0],o[1]],v=[s[0]+y,s[1]-y]):(g=h,y=(f-(d=h/T))/n.w/2,m=[o[0]+y,o[1]-y],v=[s[0],s[1]]),this.xLength2=d,this.yLength2=g,this.xDomain2=m,this.yDomain2=v;var k=this.xOffset2=n.l+n.w*m[0],M=this.yOffset2=n.t+n.h*(1-v[1]),A=this.radius=d/b,S=this.innerRadius=e.hole*A,E=this.cx=k-A*x[0],C=this.cy=M+A*x[3],P=this.cxx=E-k,z=this.cyy=C-M;this.radialAxis=this.mockAxis(t,e,i,{_id:"x",side:{counterclockwise:"top",clockwise:"bottom"}[i.side],_realSide:i.side,domain:[S/n.w,A/n.w]}),this.angularAxis=this.mockAxis(t,e,a,{side:"right",domain:[0,Math.PI],autorange:!1}),this.doAutoRange(t,e),this.updateAngularAxis(t,e),this.updateRadialAxis(t,e),this.updateRadialAxisTitle(t,e),this.xaxis=this.mockCartesianAxis(t,e,{_id:"x",domain:m}),this.yaxis=this.mockCartesianAxis(t,e,{_id:"y",domain:v});var O=this.pathSubplot();this.clipPaths.forTraces.select("path").attr("d",O).attr("transform",l(P,z)),r.frontplot.attr("transform",l(k,M)).call(u.setClipUrl,this._hasClipOnAxisFalse?null:this.clipIds.forTraces,this.gd),r.bg.attr("d",O).attr("transform",l(E,C)).call(c.fill,e.bgcolor)},O.mockAxis=function(t,e,r,n){var i=o.extendFlat({},r,n);return d(i,e,t),i},O.mockCartesianAxis=function(t,e,r){var n=this,i=r._id,a=o.extendFlat({type:"linear"},r);p(a,t);var s={x:[0,2],y:[1,3]};return a.setRange=function(){var t=n.sectorBBox,r=s[i],o=n.radialAxis._rl,l=(o[1]-o[0])/(1-e.hole);a.range=[t[r[0]]*l,t[r[1]]*l]},a.isPtWithinRange="x"===i?function(t){return n.isPtInside(t)}:function(){return!0},a.setRange(),a.setScale(),a},O.doAutoRange=function(t,e){var r=this.gd,n=this.radialAxis,i=e.radialaxis;n.setScale(),g(r,n);var a=n.range;i.range=a.slice(),i._input.range=a.slice(),n._rl=[n.r2l(a[0],null,"gregorian"),n.r2l(a[1],null,"gregorian")]},O.updateRadialAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.radialaxis,g=L(e.sector[0],360),m=r.radialAxis,v=u90&&g<=270&&(m.tickangle=180);var y=function(t){return l(m.l2p(t.x)+u,0)},x=D(d);if(r.radialTickLayout!==x&&(i["radial-axis"].selectAll(".xtick").remove(),r.radialTickLayout=x),v){m.setScale();var b=h.calcTicks(m),_=h.clipEnds(m,b),w=h.getTickSigns(m)[2];h.drawTicks(n,m,{vals:b,layer:i["radial-axis"],path:h.makeTickPath(m,0,w),transFn:y,crisp:!1}),h.drawGrid(n,m,{vals:_,layer:i["radial-grid"],path:function(t){return r.pathArc(m.r2p(t.x)+u)},transFn:o.noop,crisp:!1}),h.drawLabels(n,m,{vals:b,layer:i["radial-axis"],transFn:y,labelFns:h.makeLabelFns(m,0)})}var T=r.radialAxisAngle=r.vangles?P(R(I(d.angle),r.vangles)):d.angle,k=l(f,p),M=k+s(-T);F(i["radial-axis"],v&&(d.showticklabels||d.ticks),{transform:M}),F(i["radial-grid"],v&&d.showgrid,{transform:k}),F(i["radial-line"].select("line"),v&&d.showline,{x1:u,y1:0,x2:a,y2:0,transform:M}).attr("stroke-width",d.linewidth).call(c.stroke,d.linecolor)},O.updateRadialAxisTitle=function(t,e,r){var n=this.gd,i=this.radius,a=this.cx,o=this.cy,s=e.radialaxis,l=this.id+"title",c=void 0!==r?r:this.radialAxisAngle,f=I(c),h=Math.cos(f),p=Math.sin(f),d=0;if(s.title){var g=u.bBox(this.layers["radial-axis"].node()).height,m=s.title.font.size;d="counterclockwise"===s.side?-g-.4*m:g+.8*m}this.layers["radial-axis-title"]=x.draw(n,l,{propContainer:s,propName:this.id+".radialaxis.title",placeholder:C(n,"Click to enter radial axis title"),attributes:{x:a+i/2*h+d*p,y:o-i/2*p+d*h,"text-anchor":"middle"},transform:{rotate:-c}})},O.updateAngularAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.angularaxis,g=r.angularAxis;r.fillViewInitialKey("angularaxis.rotation",d.rotation),g.setGeometry(),g.setScale();var m=function(t){return g.t2g(t.x)};"linear"===g.type&&"radians"===g.thetaunit&&(g.tick0=P(g.tick0),g.dtick=P(g.dtick));var v=function(t){return l(f+a*Math.cos(t),p-a*Math.sin(t))},y=h.makeLabelFns(g,0).labelStandoff,x={xFn:function(t){var e=m(t);return Math.cos(e)*y},yFn:function(t){var e=m(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(y+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*A)},anchorFn:function(t){var e=m(t),r=Math.cos(e);return Math.abs(r)<.1?"middle":r>0?"start":"end"},heightFn:function(t,e,r){var n=m(t);return-.5*(1+Math.sin(n))*r}},b=D(d);r.angularTickLayout!==b&&(i["angular-axis"].selectAll("."+g._id+"tick").remove(),r.angularTickLayout=b);var _,w=h.calcTicks(g);if("linear"===e.gridshape?(_=w.map(m),o.angleDelta(_[0],_[1])<0&&(_=_.slice().reverse())):_=null,r.vangles=_,"category"===g.type&&(w=w.filter((function(t){return o.isAngleInsideSector(m(t),r.sectorInRad)}))),g.visible){var T="inside"===g.ticks?-1:1,k=(g.linewidth||1)/2;h.drawTicks(n,g,{vals:w,layer:i["angular-axis"],path:"M"+T*k+",0h"+T*g.ticklen,transFn:function(t){var e=m(t);return v(e)+s(-P(e))},crisp:!1}),h.drawGrid(n,g,{vals:w,layer:i["angular-grid"],path:function(t){var e=m(t),r=Math.cos(e),n=Math.sin(e);return"M"+[f+u*r,p-u*n]+"L"+[f+a*r,p-a*n]},transFn:o.noop,crisp:!1}),h.drawLabels(n,g,{vals:w,layer:i["angular-axis"],repositionOnUpdate:!0,transFn:function(t){return v(m(t))},labelFns:x})}F(i["angular-line"].select("path"),d.showline,{d:r.pathSubplot(),transform:l(f,p)}).attr("stroke-width",d.linewidth).call(c.stroke,d.linecolor)},O.updateFx=function(t,e){this.gd._context.staticPlot||(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1),this.updateMainDrag(t))},O.updateMainDrag=function(t){var e,r,s=this,c=s.gd,u=s.layers,f=t._zoomlayer,h=S.MINZOOM,p=S.OFFEDGE,d=s.radius,g=s.innerRadius,x=s.cx,T=s.cy,k=s.cxx,M=s.cyy,A=s.sectorInRad,C=s.vangles,L=s.radialAxis,I=E.clampTiny,P=E.findXYatLength,z=E.findEnclosingVertexAngles,O=S.cornerHalfWidth,D=S.cornerLen/2,R=m.makeDragger(u,"path","maindrag","crosshair");n.select(R).attr("d",s.pathSubplot()).attr("transform",l(x,T));var F,B,N,j,U,V,q,H,G,Y={element:R,gd:c,subplot:s.id,plotinfo:{id:s.id,xaxis:s.xaxis,yaxis:s.yaxis},xaxes:[s.xaxis],yaxes:[s.yaxis]};function W(t,e){return Math.sqrt(t*t+e*e)}function X(t,e){return W(t-k,e-M)}function Z(t,e){return Math.atan2(M-e,t-k)}function J(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function K(t,e){if(0===t)return s.pathSector(2*O);var r=D/t,n=e-r,i=e+r,a=Math.max(0,Math.min(t,d)),o=a-O,l=a+O;return"M"+J(o,n)+"A"+[o,o]+" 0,0,0 "+J(o,i)+"L"+J(l,i)+"A"+[l,l]+" 0,0,1 "+J(l,n)+"Z"}function Q(t,e,r){if(0===t)return s.pathSector(2*O);var n,i,a=J(t,e),o=J(t,r),l=I((a[0]+o[0])/2),c=I((a[1]+o[1])/2);if(l&&c){var u=c/l,f=-1/u,h=P(O,u,l,c);n=P(D,f,h[0][0],h[0][1]),i=P(D,f,h[1][0],h[1][1])}else{var p,d;c?(p=D,d=O):(p=O,d=D),n=[[l-p,c-d],[l+p,c-d]],i=[[l-p,c+d],[l+p,c+d]]}return"M"+n.join("L")+"L"+i.reverse().join("L")+"Z"}function $(t,e){return e=Math.max(Math.min(e,d),g),th?(t-1&&1===t&&_(e,c,[s.xaxis],[s.yaxis],s.id,Y),r.indexOf("event")>-1&&y.click(c,e,s.id)}Y.prepFn=function(t,n,a){var l=c._fullLayout.dragmode,u=R.getBoundingClientRect();c._fullLayout._calcInverseTransform(c);var h=c._fullLayout._invTransform;e=c._fullLayout._invScaleX,r=c._fullLayout._invScaleY;var p=o.apply3DTransform(h)(n-u.left,a-u.top);if(F=p[0],B=p[1],C){var g=E.findPolygonOffset(d,A[0],A[1],C);F+=k+g[0],B+=M+g[1]}switch(l){case"zoom":Y.moveFn=C?nt:et,Y.clickFn=ot,Y.doneFn=it,function(){N=null,j=null,U=s.pathSubplot(),V=!1;var t=c._fullLayout[s.id];q=i(t.bgcolor).getLuminance(),(H=m.makeZoombox(f,q,x,T,U)).attr("fill-rule","evenodd"),G=m.makeCorners(f,x,T),w(c)}();break;case"select":case"lasso":b(t,n,a,Y,l)}},R.onmousemove=function(t){y.hover(c,t,s.id),c._fullLayout._lasthover=R,c._fullLayout._hoversubplot=s.id},R.onmouseout=function(t){c._dragging||v.unhover(c,t)},v.init(Y)},O.updateRadialDrag=function(t,e,r){var i=this,c=i.gd,u=i.layers,f=i.radius,h=i.innerRadius,p=i.cx,d=i.cy,g=i.radialAxis,y=S.radialDragBoxSize,x=y/2;if(g.visible){var b,_,T,A=I(i.radialAxisAngle),E=g._rl,C=E[0],L=E[1],z=E[r],O=.75*(E[1]-E[0])/(1-e.hole)/f;r?(b=p+(f+x)*Math.cos(A),_=d-(f+x)*Math.sin(A),T="radialdrag"):(b=p+(h-x)*Math.cos(A),_=d-(h-x)*Math.sin(A),T="radialdrag-inner");var D,B,N,j=m.makeRectDragger(u,T,"crosshair",-x,-x,y,y),U={element:j,gd:c};F(n.select(j),g.visible&&h0==(r?N>C:Nn?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(r){var n=t.c2l(r)-e;return(s(n)?n:0)+o},t.g2c=function(r){return t.l2c(r+e-o)},t.g2p=function(t){return t*a},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case"angularaxis":!function(t,e){var r=t.type;if("linear"===r){var i=t.d2c,s=t.c2d;t.d2c=function(t,e){return function(t,e){return"degrees"===e?a(t):t}(i(t),e)},t.c2d=function(t,e){return s(function(t,e){return"degrees"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,i){var a,o,s=e[i],l=e._length,c=function(r){return t.d2c(r,e.thetaunit)};if(s){if(n.isTypedArray(s)&&"linear"===r){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(a=new Array(l),o=0;o0){for(var n=[],i=0;i<r.length;i++)n[i]="`"+r[i]+"`";e+="Finally, the template string has access to ",e=1===r.length?"variable "+n[0]:"variables "+n.slice(0,-1).join(", ")+" and "+n.slice(-1)+"."}return e}r.hovertemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:"string",dflt:"",editType:t.editType||"none"};return!1!==t.arrayOk&&(r.arrayOk=!0),r},r.texttemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:"string",dflt:"",editType:t.editType||"calc"};return!1!==t.arrayOk&&(r.arrayOk=!0),r}},{"../constants/docs":748}],907:[function(t,e,r){"use strict";var n=t("./ternary"),i=t("../../plots/get_data").getSubplotCalcData,a=t("../../lib").counterRegex;r.name="ternary";var o=r.attr="subplot";r.idRoot="ternary",r.idRegex=r.attrRegex=a("ternary"),(r.attributes={})[o]={valType:"subplotid",dflt:"ternary",editType:"calc"},r.layoutAttributes=t("./layout_attributes"),r.supplyLayoutDefaults=t("./layout_defaults"),r.plot=function(t){for(var e=t._fullLayout,r=t.calcdata,a=e._subplots.ternary,o=0;o=u&&(p.min=0,g.min=0,m.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function d(t,e,r,n){var i=f[e._name];function o(r,n){return a.coerce(t,e,i,r,n)}o("uirevision",n.uirevision),e.type="linear";var h=o("color"),p=h!==i.color.dflt?h:r.font.color,d=e._name.charAt(0).toUpperCase(),g="Component "+d,m=o("title.text",g);e._hovertitle=m===g?m:d,a.coerceFont(o,"title.font",{family:r.font.family,size:Math.round(1.2*r.font.size),color:p}),o("min"),c(t,e,o,"linear"),s(t,e,o,"linear",{}),l(t,e,o,{outerTicks:!0}),o("showticklabels")&&(a.coerceFont(o,"tickfont",{family:r.font.family,size:r.font.size,color:p}),o("tickangle"),o("tickformat")),u(t,e,o,{dfltColor:h,bgColor:r.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:i}),o("hoverformat"),o("layer")}e.exports=function(t,e,r){o(t,e,r,{type:"ternary",attributes:f,handleDefaults:p,font:e.font,paper_bgcolor:e.paper_bgcolor})}},{"../../components/color":643,"../../lib":778,"../../plot_api/plot_template":817,"../cartesian/line_grid_defaults":844,"../cartesian/tick_label_defaults":849,"../cartesian/tick_mark_defaults":850,"../cartesian/tick_value_defaults":851,"../subplot_defaults":905,"./layout_attributes":908}],910:[function(t,e,r){"use strict";var n=t("d3"),i=t("tinycolor2"),a=t("../../registry"),o=t("../../lib"),s=o.strTranslate,l=o._,c=t("../../components/color"),u=t("../../components/drawing"),f=t("../cartesian/set_convert"),h=t("../../lib/extend").extendFlat,p=t("../plots"),d=t("../cartesian/axes"),g=t("../../components/dragelement"),m=t("../../components/fx"),v=t("../../components/dragelement/helpers"),y=v.freeMode,x=v.rectMode,b=t("../../components/titles"),_=t("../cartesian/select").prepSelect,w=t("../cartesian/select").selectOnClick,T=t("../cartesian/select").clearSelect,k=t("../cartesian/select").clearSelectionsCache,M=t("../cartesian/constants");function A(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=A;var S=A.prototype;S.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},S.plot=function(t,e){var r=e[this.id],n=e._size;this._hasClipOnAxisFalse=!1;for(var i=0;iE*b?i=(a=b)*E:a=(i=x)/E,o=v*i/x,l=y*a/b,r=e.l+e.w*g-i/2,n=e.t+e.h*(1-m)-a/2,p.x0=r,p.y0=n,p.w=i,p.h=a,p.sum=_,p.xaxis={type:"linear",range:[w+2*k-_,_-w-2*T],domain:[g-o/2,g+o/2],_id:"x"},f(p.xaxis,p.graphDiv._fullLayout),p.xaxis.setScale(),p.xaxis.isPtWithinRange=function(t){return t.a>=p.aaxis.range[0]&&t.a<=p.aaxis.range[1]&&t.b>=p.baxis.range[1]&&t.b<=p.baxis.range[0]&&t.c>=p.caxis.range[1]&&t.c<=p.caxis.range[0]},p.yaxis={type:"linear",range:[w,_-T-k],domain:[m-l/2,m+l/2],_id:"y"},f(p.yaxis,p.graphDiv._fullLayout),p.yaxis.setScale(),p.yaxis.isPtWithinRange=function(){return!0};var M=p.yaxis.domain[0],A=p.aaxis=h({},t.aaxis,{range:[w,_-T-k],side:"left",tickangle:(+t.aaxis.tickangle||0)-30,domain:[M,M+l*E],anchor:"free",position:0,_id:"y",_length:i});f(A,p.graphDiv._fullLayout),A.setScale();var S=p.baxis=h({},t.baxis,{range:[_-w-k,T],side:"bottom",domain:p.xaxis.domain,anchor:"free",position:0,_id:"x",_length:i});f(S,p.graphDiv._fullLayout),S.setScale();var C=p.caxis=h({},t.caxis,{range:[_-w-T,k],side:"right",tickangle:(+t.caxis.tickangle||0)+30,domain:[M,M+l*E],anchor:"free",position:0,_id:"y",_length:i});f(C,p.graphDiv._fullLayout),C.setScale();var L="M"+r+","+(n+a)+"h"+i+"l-"+i/2+",-"+a+"Z";p.clipDef.select("path").attr("d",L),p.layers.plotbg.select("path").attr("d",L);var I="M0,"+a+"h"+i+"l-"+i/2+",-"+a+"Z";p.clipDefRelative.select("path").attr("d",I);var P=s(r,n);p.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",P),p.clipDefRelative.select("path").attr("transform",null);var z=s(r-S._offset,n+a);p.layers.baxis.attr("transform",z),p.layers.bgrid.attr("transform",z);var O=s(r+i/2,n)+"rotate(30)"+s(0,-A._offset);p.layers.aaxis.attr("transform",O),p.layers.agrid.attr("transform",O);var D=s(r+i/2,n)+"rotate(-30)"+s(0,-C._offset);p.layers.caxis.attr("transform",D),p.layers.cgrid.attr("transform",D),p.drawAxes(!0),p.layers.aline.select("path").attr("d",A.showline?"M"+r+","+(n+a)+"l"+i/2+",-"+a:"M0,0").call(c.stroke,A.linecolor||"#000").style("stroke-width",(A.linewidth||0)+"px"),p.layers.bline.select("path").attr("d",S.showline?"M"+r+","+(n+a)+"h"+i:"M0,0").call(c.stroke,S.linecolor||"#000").style("stroke-width",(S.linewidth||0)+"px"),p.layers.cline.select("path").attr("d",C.showline?"M"+(r+i/2)+","+n+"l"+i/2+","+a:"M0,0").call(c.stroke,C.linecolor||"#000").style("stroke-width",(C.linewidth||0)+"px"),p.graphDiv._context.staticPlot||p.initInteractions(),u.setClipUrl(p.layers.frontplot,p._hasClipOnAxisFalse?null:p.clipId,p.graphDiv)},S.drawAxes=function(t){var e=this.graphDiv,r=this.id.substr(7)+"title",n=this.layers,i=this.aaxis,a=this.baxis,o=this.caxis;if(this.drawAx(i),this.drawAx(a),this.drawAx(o),t){var s=Math.max(i.showticklabels?i.tickfont.size/2:0,(o.showticklabels?.75*o.tickfont.size:0)+("outside"===o.ticks?.87*o.ticklen:0)),c=(a.showticklabels?a.tickfont.size:0)+("outside"===a.ticks?a.ticklen:0)+3;n["a-title"]=b.draw(e,"a"+r,{propContainer:i,propName:this.id+".aaxis.title",placeholder:l(e,"Click to enter Component A title"),attributes:{x:this.x0+this.w/2,y:this.y0-i.title.font.size/3-s,"text-anchor":"middle"}}),n["b-title"]=b.draw(e,"b"+r,{propContainer:a,propName:this.id+".baxis.title",placeholder:l(e,"Click to enter Component B title"),attributes:{x:this.x0-c,y:this.y0+this.h+.83*a.title.font.size+c,"text-anchor":"middle"}}),n["c-title"]=b.draw(e,"c"+r,{propContainer:o,propName:this.id+".caxis.title",placeholder:l(e,"Click to enter Component C title"),attributes:{x:this.x0+this.w+c,y:this.y0+this.h+.83*o.title.font.size+c,"text-anchor":"middle"}})}},S.drawAx=function(t){var e,r=this.graphDiv,n=t._name,i=n.charAt(0),a=t._id,s=this.layers[n],l=i+"tickLayout",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);this[l]!==c&&(s.selectAll("."+a+"tick").remove(),this[l]=c),t.setScale();var u=d.calcTicks(t),f=d.clipEnds(t,u),h=d.makeTransTickFn(t),p=d.getTickSigns(t)[2],g=o.deg2rad(30),m=p*(t.linewidth||1)/2,v=p*t.ticklen,y=this.w,x=this.h,b="b"===i?"M0,"+m+"l"+Math.sin(g)*v+","+Math.cos(g)*v:"M"+m+",0l"+Math.cos(g)*v+","+-Math.sin(g)*v,_={a:"M0,0l"+x+",-"+y/2,b:"M0,0l-"+y/2+",-"+x,c:"M0,0l-"+x+","+y/2}[i];d.drawTicks(r,t,{vals:"inside"===t.ticks?f:u,layer:s,path:b,transFn:h,crisp:!1}),d.drawGrid(r,t,{vals:f,layer:this.layers[i+"grid"],path:_,transFn:h,crisp:!1}),d.drawLabels(r,t,{vals:u,layer:s,transFn:h,labelFns:d.makeLabelFns(t,0,30)})};var C=M.MINZOOM/2+.87,L="m-0.87,.5h"+C+"v3h-"+(C+5.2)+"l"+(C/2+2.6)+",-"+(.87*C+4.5)+"l2.6,1.5l-"+C/2+","+.87*C+"Z",I="m0.87,.5h-"+C+"v3h"+(C+5.2)+"l-"+(C/2+2.6)+",-"+(.87*C+4.5)+"l-2.6,1.5l"+C/2+","+.87*C+"Z",P="m0,1l"+C/2+","+.87*C+"l2.6,-1.5l-"+(C/2+2.6)+",-"+(.87*C+4.5)+"l-"+(C/2+2.6)+","+(.87*C+4.5)+"l2.6,1.5l"+C/2+",-"+.87*C+"Z",z=!0;function O(t){n.select(t).selectAll(".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners").remove()}S.clearSelect=function(){k(this.dragOptions),T(this.dragOptions.gd)},S.initInteractions=function(){var t,e,r,n,f,h,p,d,v,b,T,k,A=this,S=A.layers.plotbg.select("path").node(),C=A.graphDiv,D=C._fullLayout._zoomlayer;function R(t){var e={};return e[A.id+".aaxis.min"]=t.a,e[A.id+".baxis.min"]=t.b,e[A.id+".caxis.min"]=t.c,e}function F(t,e){var r=C._fullLayout.clickmode;O(C),2===t&&(C.emit("plotly_doubleclick",null),a.call("_guiRelayout",C,R({a:0,b:0,c:0}))),r.indexOf("select")>-1&&1===t&&w(e,C,[A.xaxis],[A.yaxis],A.id,A.dragOptions),r.indexOf("event")>-1&&m.click(C,e,A.id)}function B(t,e){return 1-e/A.h}function N(t,e){return 1-(t+(A.h-e)/Math.sqrt(3))/A.w}function j(t,e){return(t-(A.h-e)/Math.sqrt(3))/A.w}function U(i,a){var o=r+i*t,s=n+a*e,l=Math.max(0,Math.min(1,B(0,n),B(0,s))),c=Math.max(0,Math.min(1,N(r,n),N(o,s))),u=Math.max(0,Math.min(1,j(r,n),j(o,s))),g=(l/2+u)*A.w,m=(1-l/2-c)*A.w,y=(g+m)/2,x=m-g,_=(1-l)*A.h,w=_-x/E;x.2?"rgba(0,0,0,0.4)":"rgba(255,255,255,0.3)").duration(200),k.transition().style("opacity",1).duration(200),b=!0),C.emit("plotly_relayouting",R(p))}function V(){O(C),p!==f&&(a.call("_guiRelayout",C,R(p)),z&&C.data&&C._context.showTips&&(o.notifier(l(C,"Double-click to zoom back out"),"long"),z=!1))}function q(t,e){var r=t/A.xaxis._m,n=e/A.yaxis._m,i=[(p={a:f.a-n,b:f.b+(r+n)/2,c:f.c-(r-n)/2}).a,p.b,p.c].sort(o.sorterAsc),a=i.indexOf(p.a),l=i.indexOf(p.b),c=i.indexOf(p.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),p={a:i[a],b:i[l],c:i[c]},e=(f.a-p.a)*A.yaxis._m,t=(f.c-p.c-f.b+p.b)*A.xaxis._m);var h=s(A.x0+t,A.y0+e);A.plotContainer.selectAll(".scatterlayer,.maplayer").attr("transform",h);var d=s(-t,-e);A.clipDefRelative.select("path").attr("transform",d),A.aaxis.range=[p.a,A.sum-p.b-p.c],A.baxis.range=[A.sum-p.a-p.c,p.b],A.caxis.range=[A.sum-p.a-p.b,p.c],A.drawAxes(!1),A._hasClipOnAxisFalse&&A.plotContainer.select(".scatterlayer").selectAll(".trace").call(u.hideOutsideRangePoints,A),C.emit("plotly_relayouting",R(p))}function H(){a.call("_guiRelayout",C,R(p))}this.dragOptions={element:S,gd:C,plotinfo:{id:A.id,domain:C._fullLayout[A.id].domain,xaxis:A.xaxis,yaxis:A.yaxis},subplot:A.id,prepFn:function(a,l,u){A.dragOptions.xaxes=[A.xaxis],A.dragOptions.yaxes=[A.yaxis],t=C._fullLayout._invScaleX,e=C._fullLayout._invScaleY;var g=A.dragOptions.dragmode=C._fullLayout.dragmode;y(g)?A.dragOptions.minDrag=1:A.dragOptions.minDrag=void 0,"zoom"===g?(A.dragOptions.moveFn=U,A.dragOptions.clickFn=F,A.dragOptions.doneFn=V,function(t,e,a){var l=S.getBoundingClientRect();r=e-l.left,n=a-l.top,C._fullLayout._calcInverseTransform(C);var u=C._fullLayout._invTransform,g=o.apply3DTransform(u)(r,n);r=g[0],n=g[1],f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},p=f,h=A.aaxis.range[1]-f.a,d=i(A.graphDiv._fullLayout[A.id].bgcolor).getLuminance(),v="M0,"+A.h+"L"+A.w/2+", 0L"+A.w+","+A.h+"Z",b=!1,T=D.append("path").attr("class","zoombox").attr("transform",s(A.x0,A.y0)).style({fill:d>.2?"rgba(0,0,0,0)":"rgba(255,255,255,0)","stroke-width":0}).attr("d",v),k=D.append("path").attr("class","zoombox-corners").attr("transform",s(A.x0,A.y0)).style({fill:c.background,stroke:c.defaultLine,"stroke-width":1,opacity:0}).attr("d","M0,0Z"),A.clearSelect(C)}(0,l,u)):"pan"===g?(A.dragOptions.moveFn=q,A.dragOptions.clickFn=F,A.dragOptions.doneFn=H,f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},p=f,A.clearSelect(C)):(x(g)||y(g))&&_(a,l,u,A.dragOptions,g)}},S.onmousemove=function(t){m.hover(C,t,A.id),C._fullLayout._lasthover=S,C._fullLayout._hoversubplot=A.id},S.onmouseout=function(t){C._dragging||g.unhover(C,t)},g.init(this.dragOptions)}},{"../../components/color":643,"../../components/dragelement":662,"../../components/dragelement/helpers":661,"../../components/drawing":665,"../../components/fx":683,"../../components/titles":738,"../../lib":778,"../../lib/extend":768,"../../registry":911,"../cartesian/axes":828,"../cartesian/constants":834,"../cartesian/select":847,"../cartesian/set_convert":848,"../plots":891,d3:169,tinycolor2:576}],911:[function(t,e,r){"use strict";var n=t("./lib/loggers"),i=t("./lib/noop"),a=t("./lib/push_unique"),o=t("./lib/is_plain_object"),s=t("./lib/dom").addStyleRule,l=t("./lib/extend"),c=t("./plots/attributes"),u=t("./plots/layout_attributes"),f=l.extendFlat,h=l.extendDeepAll;function p(t){var e=t.name,i=t.categories,a=t.meta;if(r.modules[e])n.log("Type "+e+" already registered");else{r.subplotsRegistry[t.basePlotModule.name]||function(t){var e=t.name;if(r.subplotsRegistry[e])return void n.log("Plot type "+e+" already registered.");for(var i in v(t),r.subplotsRegistry[e]=t,r.componentsRegistry)b(i,t.name)}(t.basePlotModule);for(var o={},l=0;l-1&&(f[p[r]].title={text:""});for(r=0;r")?"":e.html(t).text()}));return e.remove(),r}(T),T=(T=T.replace(/&(?!\w+;|\#[0-9]+;| \#x[0-9A-F]+;)/g,"&")).replace(c,"'"),i.isIE()&&(T=(T=(T=T.replace(/"/gi,"'")).replace(/(\('#)([^']*)('\))/gi,'("#$2")')).replace(/(\\')/gi,'"')),T}},{"../components/color":643,"../components/drawing":665,"../constants/xmlns_namespaces":754,"../lib":778,d3:169}],920:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;rf+c||!n(u))}for(var p=0;pa))return e}return void 0!==r?r:t.dflt},r.coerceColor=function(t,e,r){return i(e).isValid()?e:void 0!==r?r:t.dflt},r.coerceEnumerated=function(t,e,r){return t.coerceNumber&&(e=+e),-1!==t.values.indexOf(e)?e:void 0!==r?r:t.dflt},r.getValue=function(t,e){var r;return Array.isArray(t)?e0?i+=a:e<0&&(i-=a)}return n.inbox(r-e,i-e,b+(i-e)/(i-r)-1)}"h"===m.orientation?(a=r,s=e,u="y",f="x",h=S,p=A):(a=e,s=r,u="x",f="y",p=S,h=A);var E=t[u+"a"],C=t[f+"a"];d=Math.abs(E.r2c(E.range[1])-E.r2c(E.range[0]));var L=n.getDistanceFunction(i,h,p,(function(t){return(h(t)+p(t))/2}));if(n.getClosest(g,L,t),!1!==t.index&&g[t.index].p!==c){y||(T=function(t){return Math.min(_(t),t.p-v.bargroupwidth/2)},k=function(t){return Math.max(w(t),t.p+v.bargroupwidth/2)});var I=g[t.index],P=m.base?I.b+I.s:I.s;t[f+"0"]=t[f+"1"]=C.c2p(I[f],!0),t[f+"LabelVal"]=P;var z=v.extents[v.extents.round(I.p)];t[u+"0"]=E.c2p(y?T(I):z[0],!0),t[u+"1"]=E.c2p(y?k(I):z[1],!0);var O=void 0!==I.orig_p;return t[u+"LabelVal"]=O?I.orig_p:I.p,t.labelLabel=l(E,t[u+"LabelVal"]),t.valueLabel=l(C,t[f+"LabelVal"]),t.baseLabel=l(C,I.b),t.spikeDistance=(S(I)+function(t){return M(_(t),w(t))}(I))/2-b,t[u+"Spike"]=E.c2p(I.p,!0),o(I,m,t),t.hovertemplate=m.hovertemplate,t}}function f(t,e){var r=e.mcc||t.marker.color,n=e.mlcc||t.marker.line.color,i=s(t,e);return a.opacity(r)?r:a.opacity(n)&&i?n:void 0}e.exports={hoverPoints:function(t,e,r,n){var a=u(t,e,r,n);if(a){var o=a.cd,s=o[0].trace,l=o[a.index];return a.color=f(s,l),i.getComponentMethod("errorbars","hoverInfo")(l,s,a),[a]}},hoverOnBars:u,getTraceColor:f}},{"../../components/color":643,"../../components/fx":683,"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/axes":828,"../../registry":911,"./helpers":927}],929:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc").crossTraceCalc,colorbar:t("../scatter/marker_colorbar"),arraysToCalcdata:t("./arrays_to_calcdata"),plot:t("./plot").plot,style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover").hoverPoints,eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"bar",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","bar","oriented","errorBarsOK","showLegend","zoomScale"],animatable:!0,meta:{}}},{"../../plots/cartesian":841,"../scatter/marker_colorbar":1205,"./arrays_to_calcdata":920,"./attributes":921,"./calc":922,"./cross_trace_calc":924,"./defaults":925,"./event_data":926,"./hover":928,"./layout_attributes":930,"./layout_defaults":931,"./plot":932,"./select":933,"./style":935}],930:[function(t,e,r){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","group","overlay","relative"],dflt:"group",editType:"calc"},barnorm:{valType:"enumerated",values:["","fraction","percent"],dflt:"",editType:"calc"},bargap:{valType:"number",min:0,max:1,editType:"calc"},bargroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],931:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../plots/cartesian/axes"),a=t("../../lib"),o=t("./layout_attributes");e.exports=function(t,e,r){function s(r,n){return a.coerce(t,e,o,r,n)}for(var l=!1,c=!1,u=!1,f={},h=s("barmode"),p=0;p0}function S(t){return"auto"===t?0:t}function E(t,e){var r=Math.PI/180*e,n=Math.abs(Math.sin(r)),i=Math.abs(Math.cos(r));return{x:t.width*i+t.height*n,y:t.width*n+t.height*i}}function C(t,e,r,n,i,a){var o=!!a.isHorizontal,s=!!a.constrained,l=a.angle||0,c=a.anchor||"end",u="end"===c,f="start"===c,h=((a.leftToRight||0)+1)/2,p=1-h,d=i.width,g=i.height,m=Math.abs(e-t),v=Math.abs(n-r),y=m>2*_&&v>2*_?_:0;m-=2*y,v-=2*y;var x=S(l);"auto"!==l||d<=m&&g<=v||!(d>m||g>v)||(d>v||g>m)&&d.01?H:function(t,e,r){return r&&t===e?t:Math.abs(t-e)>=2?H(t):t>e?Math.ceil(t):Math.floor(t)};B=G(B,N,D),N=G(N,B,D),j=G(j,U,!D),U=G(U,j,!D)}var Y=M(a.ensureSingle(P,"path"),I,m,v);if(Y.style("vector-effect","non-scaling-stroke").attr("d",isNaN((N-B)*(U-j))||V&&t._context.staticPlot?"M0,0Z":"M"+B+","+j+"V"+U+"H"+N+"V"+j+"Z").call(l.setClipUrl,e.layerClipId,t),!I.uniformtext.mode&&R){var W=l.makePointStyleFns(f);l.singlePointStyle(c,Y,f,W,t)}!function(t,e,r,n,i,s,c,f,p,m,v){var w,T=e.xaxis,A=e.yaxis,L=t._fullLayout;function I(e,r,n){return a.ensureSingle(e,"text").text(r).attr({class:"bartext bartext-"+w,"text-anchor":"middle","data-notex":1}).call(l.font,n).call(o.convertToTspans,t)}var P=n[0].trace,z="h"===P.orientation,O=function(t,e,r,n,i){var o,s=e[0].trace;o=s.texttemplate?function(t,e,r,n,i){var o=e[0].trace,s=a.castOption(o,r,"texttemplate");if(!s)return"";var l,c,f,h,p="waterfall"===o.type,d="funnel"===o.type;"h"===o.orientation?(l="y",c=i,f="x",h=n):(l="x",c=n,f="y",h=i);function g(t){return u(h,+t,!0).text}var m=e[r],v={};v.label=m.p,v.labelLabel=v[l+"Label"]=(y=m.p,u(c,y,!0).text);var y;var x=a.castOption(o,m.i,"text");(0===x||x)&&(v.text=x);v.value=m.s,v.valueLabel=v[f+"Label"]=g(m.s);var _={};b(_,o,m.i),p&&(v.delta=+m.rawS||m.s,v.deltaLabel=g(v.delta),v.final=m.v,v.finalLabel=g(v.final),v.initial=v.final-v.delta,v.initialLabel=g(v.initial));d&&(v.value=m.s,v.valueLabel=g(v.value),v.percentInitial=m.begR,v.percentInitialLabel=a.formatPercent(m.begR),v.percentPrevious=m.difR,v.percentPreviousLabel=a.formatPercent(m.difR),v.percentTotal=m.sumR,v.percenTotalLabel=a.formatPercent(m.sumR));var w=a.castOption(o,m.i,"customdata");w&&(v.customdata=w);return a.texttemplateString(s,v,t._d3locale,_,v,o._meta||{})}(t,e,r,n,i):s.textinfo?function(t,e,r,n){var i=t[0].trace,o="h"===i.orientation,s="waterfall"===i.type,l="funnel"===i.type;function c(t){return u(o?r:n,+t,!0).text}var f,h=i.textinfo,p=t[e],d=h.split("+"),g=[],m=function(t){return-1!==d.indexOf(t)};m("label")&&g.push((v=t[e].p,u(o?n:r,v,!0).text));var v;m("text")&&(0===(f=a.castOption(i,p.i,"text"))||f)&&g.push(f);if(s){var y=+p.rawS||p.s,x=p.v,b=x-y;m("initial")&&g.push(c(b)),m("delta")&&g.push(c(y)),m("final")&&g.push(c(x))}if(l){m("value")&&g.push(c(p.s));var _=0;m("percent initial")&&_++,m("percent previous")&&_++,m("percent total")&&_++;var w=_>1;m("percent initial")&&(f=a.formatPercent(p.begR),w&&(f+=" of initial"),g.push(f)),m("percent previous")&&(f=a.formatPercent(p.difR),w&&(f+=" of previous"),g.push(f)),m("percent total")&&(f=a.formatPercent(p.sumR),w&&(f+=" of total"),g.push(f))}return g.join("
")}(e,r,n,i):g.getValue(s.text,r);return g.coerceString(y,o)}(L,n,i,T,A);w=function(t,e){var r=g.getValue(t.textposition,e);return g.coerceEnumerated(x,r)}(P,i);var D="stack"===m.mode||"relative"===m.mode,R=n[i],F=!D||R._outmost;if(!O||"none"===w||(R.isBlank||s===c||f===p)&&("auto"===w||"inside"===w))return void r.select("text").remove();var B=L.font,N=d.getBarColor(n[i],P),j=d.getInsideTextFont(P,i,B,N),U=d.getOutsideTextFont(P,i,B),V=r.datum();z?"log"===T.type&&V.s0<=0&&(s=T.range[0]=G*(Z/Y):Z>=Y*(X/G);G>0&&Y>0&&(J||K||Q)?w="inside":(w="outside",q.remove(),q=null)}else w="inside";if(!q){W=a.ensureUniformFontSize(t,"outside"===w?U:j);var $=(q=I(r,O,W)).attr("transform");if(q.attr("transform",""),H=l.bBox(q.node()),G=H.width,Y=H.height,q.attr("transform",$),G<=0||Y<=0)return void q.remove()}var tt,et,rt=P.textangle;"outside"===w?(et="both"===P.constraintext||"outside"===P.constraintext,tt=function(t,e,r,n,i,a){var o,s=!!a.isHorizontal,l=!!a.constrained,c=a.angle||0,u=i.width,f=i.height,h=Math.abs(e-t),p=Math.abs(n-r);o=s?p>2*_?_:0:h>2*_?_:0;var d=1;l&&(d=s?Math.min(1,p/f):Math.min(1,h/u));var g=S(c),m=E(i,g),v=(s?m.x:m.y)/2,y=(i.left+i.right)/2,x=(i.top+i.bottom)/2,b=(t+e)/2,w=(r+n)/2,T=0,M=0,A=s?k(e,t):k(r,n);s?(b=e-A*o,T=A*v):(w=n+A*o,M=-A*v);return{textX:y,textY:x,targetX:b,targetY:w,anchorX:T,anchorY:M,scale:d,rotate:g}}(s,c,f,p,H,{isHorizontal:z,constrained:et,angle:rt})):(et="both"===P.constraintext||"inside"===P.constraintext,tt=C(s,c,f,p,H,{isHorizontal:z,constrained:et,angle:rt,anchor:P.insidetextanchor}));tt.fontSize=W.size,h(P.type,tt,L),R.transform=tt,M(q,L,m,v).attr("transform",a.getTextTransform(tt))}(t,e,P,r,p,B,N,j,U,m,v),e.layerClipId&&l.hideOutsideRangePoint(c,P.select("text"),w,L,f.xcalendar,f.ycalendar)}));var j=!1===f.cliponaxis;l.setClipUrl(c,j?null:e.layerClipId,t)}));c.getComponentMethod("errorbars","plot")(t,P,e,m)},toMoveInsideBar:C}},{"../../components/color":643,"../../components/drawing":665,"../../components/fx/helpers":679,"../../lib":778,"../../lib/svg_text_utils":803,"../../plots/cartesian/axes":828,"../../registry":911,"./attributes":921,"./constants":923,"./helpers":927,"./style":935,"./uniform_text":937,d3:169,"fast-isnumeric":241}],933:[function(t,e,r){"use strict";function n(t,e,r,n,i){var a=e.c2p(n?t.s0:t.p0,!0),o=e.c2p(n?t.s1:t.p1,!0),s=r.c2p(n?t.p0:t.s0,!0),l=r.c2p(n?t.p1:t.s1,!0);return i?[(a+o)/2,(s+l)/2]:n?[o,(s+l)/2]:[(a+o)/2,l]}e.exports=function(t,e){var r,i=t.cd,a=t.xaxis,o=t.yaxis,s=i[0].trace,l="funnel"===s.type,c="h"===s.orientation,u=[];if(!1===e)for(r=0;r1||0===i.bargap&&0===i.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr("shape-rendering","crispEdges")})),e.selectAll("g.points").each((function(e){d(n.select(this),e[0].trace,t)})),s.getComponentMethod("errorbars","style")(e)},styleTextPoints:g,styleOnSelect:function(t,e,r){var i=e[0].trace;i.selectedpoints?function(t,e,r){a.selectedPointStyle(t.selectAll("path"),e),function(t,e,r){t.each((function(t){var i,s=n.select(this);if(t.selected){i=o.ensureUniformFontSize(r,m(s,t,e,r));var l=e.selected.textfont&&e.selected.textfont.color;l&&(i.color=l),a.font(s,i)}else a.selectedTextStyle(s,e)}))}(t.selectAll("text"),e,r)}(r,i,t):(d(r,i,t),s.getComponentMethod("errorbars","style")(r))},getInsideTextFont:y,getOutsideTextFont:x,getBarColor:_,resizeText:l}},{"../../components/color":643,"../../components/drawing":665,"../../lib":778,"../../registry":911,"./attributes":921,"./helpers":927,"./uniform_text":937,d3:169}],936:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults");e.exports=function(t,e,r,o,s){r("marker.color",o),i(t,"marker")&&a(t,e,s,r,{prefix:"marker.",cLetter:"c"}),r("marker.line.color",n.defaultLine),i(t,"marker.line")&&a(t,e,s,r,{prefix:"marker.line.",cLetter:"c"}),r("marker.line.width"),r("marker.opacity"),r("selected.marker.color"),r("unselected.marker.color")}},{"../../components/color":643,"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654}],937:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib");function a(t){return"_"+t+"Text_minsize"}e.exports={recordMinTextSize:function(t,e,r){if(r.uniformtext.mode){var n=a(t),i=r.uniformtext.minsize,o=e.scale*e.fontSize;e.hide=oh.range[1]&&(x+=Math.PI);if(n.getClosest(c,(function(t){return g(y,x,[t.rp0,t.rp1],[t.thetag0,t.thetag1],d)?m+Math.min(1,Math.abs(t.thetag1-t.thetag0)/v)-1+(t.rp1-y)/(t.rp1-t.rp0)-1:1/0}),t),!1!==t.index){var b=c[t.index];t.x0=t.x1=b.ct[0],t.y0=t.y1=b.ct[1];var _=i.extendFlat({},b,{r:b.s,theta:b.p});return o(b,u,t),s(_,u,f,t),t.hovertemplate=u.hovertemplate,t.color=a(u,b),t.xLabelVal=t.yLabelVal=void 0,b.s<0&&(t.idealAlign="left"),[t]}}},{"../../components/fx":683,"../../lib":778,"../../plots/polar/helpers":893,"../bar/hover":928,"../scatterpolar/hover":1265}],942:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"barpolar",basePlotModule:t("../../plots/polar"),categories:["polar","bar","showLegend"],attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("../scatterpolar/format_labels"),style:t("../bar/style").style,styleOnSelect:t("../bar/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../bar/select"),meta:{}}},{"../../plots/polar":894,"../bar/select":933,"../bar/style":935,"../scatter/marker_colorbar":1205,"../scatterpolar/format_labels":1264,"./attributes":938,"./calc":939,"./defaults":940,"./hover":941,"./layout_attributes":943,"./layout_defaults":944,"./plot":945}],943:[function(t,e,r){"use strict";e.exports={barmode:{valType:"enumerated",values:["stack","overlay"],dflt:"stack",editType:"calc"},bargap:{valType:"number",dflt:.1,min:0,max:1,editType:"calc"}}},{}],944:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a,o={};function s(r,o){return n.coerce(t[a]||{},e[a],i,r,o)}for(var l=0;l0?(c=o,u=l):(c=l,u=o);var f=[s.findEnclosingVertexAngles(c,t.vangles)[0],(c+u)/2,s.findEnclosingVertexAngles(u,t.vangles)[1]];return s.pathPolygonAnnulus(n,i,c,u,f,e,r)};return function(t,n,i,o){return a.pathAnnulus(t,n,i,o,e,r)}}(e),p=e.layers.frontplot.select("g.barlayer");a.makeTraceGroups(p,r,"trace bars").each((function(){var r=n.select(this),s=a.ensureSingle(r,"g","points").selectAll("g.point").data(a.identity);s.enter().append("g").style("vector-effect","non-scaling-stroke").style("stroke-miterlimit",2).classed("point",!0),s.exit().remove(),s.each((function(t){var e,r=n.select(this),o=t.rp0=u.c2p(t.s0),s=t.rp1=u.c2p(t.s1),p=t.thetag0=f.c2g(t.p0),d=t.thetag1=f.c2g(t.p1);if(i(o)&&i(s)&&i(p)&&i(d)&&o!==s&&p!==d){var g=u.c2g(t.s1),m=(p+d)/2;t.ct=[l.c2p(g*Math.cos(m)),c.c2p(g*Math.sin(m))],e=h(o,s,p,d)}else e="M0,0Z";a.ensureSingle(r,"path").attr("d",e)})),o.setClipUrl(r,e._hasClipOnAxisFalse?e.clipIds.forTraces:null,t)}))}},{"../../components/drawing":665,"../../lib":778,"../../plots/polar/helpers":893,d3:169,"fast-isnumeric":241}],946:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../bar/attributes"),a=t("../../components/color/attributes"),o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../lib/extend").extendFlat,l=n.marker,c=l.line;e.exports={y:{valType:"data_array",editType:"calc+clearAxisTypes"},x:{valType:"data_array",editType:"calc+clearAxisTypes"},x0:{valType:"any",editType:"calc+clearAxisTypes"},y0:{valType:"any",editType:"calc+clearAxisTypes"},dx:{valType:"number",editType:"calc"},dy:{valType:"number",editType:"calc"},xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,name:{valType:"string",editType:"calc+clearAxisTypes"},q1:{valType:"data_array",editType:"calc+clearAxisTypes"},median:{valType:"data_array",editType:"calc+clearAxisTypes"},q3:{valType:"data_array",editType:"calc+clearAxisTypes"},lowerfence:{valType:"data_array",editType:"calc"},upperfence:{valType:"data_array",editType:"calc"},notched:{valType:"boolean",editType:"calc"},notchwidth:{valType:"number",min:0,max:.5,dflt:.25,editType:"calc"},notchspan:{valType:"data_array",editType:"calc"},boxpoints:{valType:"enumerated",values:["all","outliers","suspectedoutliers",!1],editType:"calc"},jitter:{valType:"number",min:0,max:1,editType:"calc"},pointpos:{valType:"number",min:-2,max:2,editType:"calc"},boxmean:{valType:"enumerated",values:[!0,"sd",!1],editType:"calc"},mean:{valType:"data_array",editType:"calc"},sd:{valType:"data_array",editType:"calc"},orientation:{valType:"enumerated",values:["v","h"],editType:"calc+clearAxisTypes"},quartilemethod:{valType:"enumerated",values:["linear","exclusive","inclusive"],dflt:"linear",editType:"calc"},width:{valType:"number",min:0,dflt:0,editType:"calc"},marker:{outliercolor:{valType:"color",dflt:"rgba(0, 0, 0, 0)",editType:"style"},symbol:s({},l.symbol,{arrayOk:!1,editType:"plot"}),opacity:s({},l.opacity,{arrayOk:!1,dflt:1,editType:"style"}),size:s({},l.size,{arrayOk:!1,editType:"calc"}),color:s({},l.color,{arrayOk:!1,editType:"style"}),line:{color:s({},c.color,{arrayOk:!1,dflt:a.defaultLine,editType:"style"}),width:s({},c.width,{arrayOk:!1,dflt:0,editType:"style"}),outliercolor:{valType:"color",editType:"style"},outlierwidth:{valType:"number",min:0,dflt:1,editType:"style"},editType:"style"},editType:"plot"},line:{color:{valType:"color",editType:"style"},width:{valType:"number",min:0,dflt:2,editType:"style"},editType:"plot"},fillcolor:n.fillcolor,whiskerwidth:{valType:"number",min:0,max:1,dflt:.5,editType:"calc"},offsetgroup:i.offsetgroup,alignmentgroup:i.alignmentgroup,selected:{marker:n.selected.marker,editType:"style"},unselected:{marker:n.unselected.marker,editType:"style"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),hovertemplate:o({}),hoveron:{valType:"flaglist",flags:["boxes","points"],dflt:"boxes+points",editType:"style"}}},{"../../components/color/attributes":642,"../../lib/extend":768,"../../plots/template_attributes":906,"../bar/attributes":921,"../scatter/attributes":1187}],947:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../plots/cartesian/axes"),a=t("../../plots/cartesian/align_period"),o=t("../../lib"),s=t("../../constants/numerical").BADNUM,l=o._;e.exports=function(t,e){var r,c,y,x,b,_,w,T=t._fullLayout,k=i.getFromId(t,e.xaxis||"x"),M=i.getFromId(t,e.yaxis||"y"),A=[],S="violin"===e.type?"_numViolins":"_numBoxes";"h"===e.orientation?(y=k,x="x",b=M,_="y",w=!!e.yperiodalignment):(y=M,x="y",b=k,_="x",w=!!e.xperiodalignment);var E,C,L,I,P,z,O=function(t,e,r,i){var s,l=e+"0"in t,c="d"+e in t;if(e in t||l&&c){var u=r.makeCalcdata(t,e);return[a(t,r,e,u),u]}s=l?t[e+"0"]:"name"in t&&("category"===r.type||n(t.name)&&-1!==["linear","log"].indexOf(r.type)||o.isDateTime(t.name)&&"date"===r.type)?t.name:i;for(var f="multicategory"===r.type?r.r2c_just_indices(s):r.d2c(s,0,t[e+"calendar"]),h=t._length,p=new Array(h),d=0;dE.uf};if(e._hasPreCompStats){var U=e[x],V=function(t){return y.d2c((e[t]||[])[r])},q=1/0,H=-1/0;for(r=0;r=E.q1&&E.q3>=E.med){var Y=V("lowerfence");E.lf=Y!==s&&Y<=E.q1?Y:p(E,L,I);var W=V("upperfence");E.uf=W!==s&&W>=E.q3?W:d(E,L,I);var X=V("mean");E.mean=X!==s?X:I?o.mean(L,I):(E.q1+E.q3)/2;var Z=V("sd");E.sd=X!==s&&Z>=0?Z:I?o.stdev(L,I,E.mean):E.q3-E.q1,E.lo=g(E),E.uo=m(E);var J=V("notchspan");J=J!==s&&J>0?J:v(E,I),E.ln=E.med-J,E.un=E.med+J;var K=E.lf,Q=E.uf;e.boxpoints&&L.length&&(K=Math.min(K,L[0]),Q=Math.max(Q,L[I-1])),e.notched&&(K=Math.min(K,E.ln),Q=Math.max(Q,E.un)),E.min=K,E.max=Q}else{var $;o.warn(["Invalid input - make sure that q1 <= median <= q3","q1 = "+E.q1,"median = "+E.med,"q3 = "+E.q3].join("\n")),$=E.med!==s?E.med:E.q1!==s?E.q3!==s?(E.q1+E.q3)/2:E.q1:E.q3!==s?E.q3:0,E.med=$,E.q1=E.q3=$,E.lf=E.uf=$,E.mean=E.sd=$,E.ln=E.un=$,E.min=E.max=$}q=Math.min(q,E.min),H=Math.max(H,E.max),E.pts2=C.filter(j),A.push(E)}}e._extremes[y._id]=i.findExtremes(y,[q,H],{padded:!0})}else{var tt=y.makeCalcdata(e,x),et=function(t,e){for(var r=t.length,n=new Array(r+1),i=0;i=0&&it0){var ut,ft;if((E={}).pos=E[_]=B[r],C=E.pts=nt[r].sort(f),I=(L=E[x]=C.map(h)).length,E.min=L[0],E.max=L[I-1],E.mean=o.mean(L,I),E.sd=o.stdev(L,I,E.mean),E.med=o.interp(L,.5),I%2&&(lt||ct))lt?(ut=L.slice(0,I/2),ft=L.slice(I/2+1)):ct&&(ut=L.slice(0,I/2+1),ft=L.slice(I/2)),E.q1=o.interp(ut,.5),E.q3=o.interp(ft,.5);else E.q1=o.interp(L,.25),E.q3=o.interp(L,.75);E.lf=p(E,L,I),E.uf=d(E,L,I),E.lo=g(E),E.uo=m(E);var ht=v(E,I);E.ln=E.med-ht,E.un=E.med+ht,at=Math.min(at,E.ln),ot=Math.max(ot,E.un),E.pts2=C.filter(j),A.push(E)}e._extremes[y._id]=i.findExtremes(y,e.notched?tt.concat([at,ot]):tt,{padded:!0})}return function(t,e){if(o.isArrayOrTypedArray(e.selectedpoints))for(var r=0;r0?(A[0].t={num:T[S],dPos:N,posLetter:_,valLetter:x,labels:{med:l(t,"median:"),min:l(t,"min:"),q1:l(t,"q1:"),q3:l(t,"q3:"),max:l(t,"max:"),mean:"sd"===e.boxmean?l(t,"mean \xb1 \u03c3:"):l(t,"mean:"),lf:l(t,"lower fence:"),uf:l(t,"upper fence:")}},T[S]++,A):[{t:{empty:!0}}]};var c={text:"tx",hovertext:"htx"};function u(t,e,r){for(var n in c)o.isArrayOrTypedArray(e[n])&&(Array.isArray(r)?o.isArrayOrTypedArray(e[n][r[0]])&&(t[c[n]]=e[n][r[0]][r[1]]):t[c[n]]=e[n][r])}function f(t,e){return t.v-e.v}function h(t){return t.v}function p(t,e,r){return 0===r?t.q1:Math.min(t.q1,e[Math.min(o.findBin(2.5*t.q1-1.5*t.q3,e,!0)+1,r-1)])}function d(t,e,r){return 0===r?t.q3:Math.max(t.q3,e[Math.max(o.findBin(2.5*t.q3-1.5*t.q1,e),0)])}function g(t){return 4*t.q1-3*t.q3}function m(t){return 4*t.q3-3*t.q1}function v(t,e){return 0===e?0:1.57*(t.q3-t.q1)/Math.sqrt(e)}},{"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/align_period":825,"../../plots/cartesian/axes":828,"fast-isnumeric":241}],948:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib"),a=t("../../plots/cartesian/constraints").getAxisGroup,o=["v","h"];function s(t,e,r,o){var s,l,c,u=e.calcdata,f=e._fullLayout,h=o._id,p=h.charAt(0),d=[],g=0;for(s=0;s1,b=1-f[t+"gap"],_=1-f[t+"groupgap"];for(s=0;s0){var H=E.pointpos,G=E.jitter,Y=E.marker.size/2,W=0;H+G>=0&&((W=V*(H+G))>A?(q=!0,j=Y,B=W):W>R&&(j=Y,B=A)),W<=A&&(B=A);var X=0;H-G<=0&&((X=-V*(H-G))>S?(q=!0,U=Y,N=X):X>F&&(U=Y,N=S)),X<=S&&(N=S)}else B=A,N=S;var Z=new Array(c.length);for(l=0;l0?(m="v",v=x>0?Math.min(_,b):Math.min(b)):x>0?(m="h",v=Math.min(_)):v=0;if(v){e._length=v;var S=r("orientation",m);e._hasPreCompStats?"v"===S&&0===x?(r("x0",0),r("dx",1)):"h"===S&&0===y&&(r("y0",0),r("dy",1)):"v"===S&&0===x?r("x0"):"h"===S&&0===y&&r("y0"),i.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y"],a)}else e.visible=!1}function f(t,e,r,i){var a=i.prefix,o=n.coerce2(t,e,c,"marker.outliercolor"),s=r("marker.line.outliercolor"),l="outliers";e._hasPreCompStats?l="all":(o||s)&&(l="suspectedoutliers");var u=r(a+"points",l);u?(r("jitter","all"===u?.3:0),r("pointpos","all"===u?-1.5:0),r("marker.symbol"),r("marker.opacity"),r("marker.size"),r("marker.color",e.line.color),r("marker.line.color"),r("marker.line.width"),"suspectedoutliers"===u&&(r("marker.line.outliercolor",e.marker.color),r("marker.line.outlierwidth")),r("selected.marker.color"),r("unselected.marker.color"),r("selected.marker.size"),r("unselected.marker.size"),r("text"),r("hovertext")):delete e.marker;var f=r("hoveron");"all"!==f&&-1===f.indexOf("points")||r("hovertemplate"),n.coerceSelectionMarkerOpacity(e,r)}e.exports={supplyDefaults:function(t,e,r,i){function s(r,i){return n.coerce(t,e,c,r,i)}if(u(t,e,s,i),!1!==e.visible){o(t,e,i,s);var l=e._hasPreCompStats;l&&(s("lowerfence"),s("upperfence")),s("line.color",(t.marker||{}).color||r),s("line.width"),s("fillcolor",a.addOpacity(e.line.color,.5));var h=!1;if(l){var p=s("mean"),d=s("sd");p&&p.length&&(h=!0,d&&d.length&&(h="sd"))}s("boxmean",h),s("whiskerwidth"),s("width"),s("quartilemethod");var g=!1;if(l){var m=s("notchspan");m&&m.length&&(g=!0)}else n.validate(t.notchwidth,c.notchwidth)&&(g=!0);s("notched",g)&&s("notchwidth"),f(t,e,s,{prefix:"box"})}},crossTraceDefaults:function(t,e){var r,i;function a(t){return n.coerce(i._input,i,c,t)}for(var o=0;ot.lo&&(x.so=!0)}return a}));h.enter().append("path").classed("point",!0),h.exit().remove(),h.call(a.translatePoints,o,s)}function l(t,e,r,a){var o,s,l=e.val,c=e.pos,u=!!c.rangebreaks,f=a.bPos,h=a.bPosPxOffset||0,p=r.boxmean||(r.meanline||{}).visible;Array.isArray(a.bdPos)?(o=a.bdPos[0],s=a.bdPos[1]):(o=a.bdPos,s=a.bdPos);var d=t.selectAll("path.mean").data("box"===r.type&&r.boxmean||"violin"===r.type&&r.box.visible&&r.meanline.visible?i.identity:[]);d.enter().append("path").attr("class","mean").style({fill:"none","vector-effect":"non-scaling-stroke"}),d.exit().remove(),d.each((function(t){var e=c.c2l(t.pos+f,!0),i=c.l2p(e-o)+h,a=c.l2p(e+s)+h,d=u?(i+a)/2:c.l2p(e)+h,g=l.c2p(t.mean,!0),m=l.c2p(t.mean-t.sd,!0),v=l.c2p(t.mean+t.sd,!0);"h"===r.orientation?n.select(this).attr("d","M"+g+","+i+"V"+a+("sd"===p?"m0,0L"+m+","+d+"L"+g+","+i+"L"+v+","+d+"Z":"")):n.select(this).attr("d","M"+i+","+g+"H"+a+("sd"===p?"m0,0L"+d+","+m+"L"+i+","+g+"L"+d+","+v+"Z":""))}))}e.exports={plot:function(t,e,r,a){var c=e.xaxis,u=e.yaxis;i.makeTraceGroups(a,r,"trace boxes").each((function(t){var e,r,i=n.select(this),a=t[0],f=a.t,h=a.trace;(f.wdPos=f.bdPos*h.whiskerwidth,!0!==h.visible||f.empty)?i.remove():("h"===h.orientation?(e=u,r=c):(e=c,r=u),o(i,{pos:e,val:r},h,f),s(i,{x:c,y:u},h,f),l(i,{pos:e,val:r},h,f))}))},plotBoxAndWhiskers:o,plotPoints:s,plotBoxMean:l}},{"../../components/drawing":665,"../../lib":778,d3:169}],956:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n,i=t.cd,a=t.xaxis,o=t.yaxis,s=[];if(!1===e)for(r=0;r=10)return null;for(var i=1/0,a=-1/0,o=e.length,s=0;s0?Math.floor:Math.ceil,P=C>0?Math.ceil:Math.floor,z=C>0?Math.min:Math.max,O=C>0?Math.max:Math.min,D=I(S+L),R=P(E-L),F=[[f=A(S)]];for(a=D;a*C=0;i--)a[u-i]=t[f][i],o[u-i]=e[f][i];for(s.push({x:a,y:o,bicubic:l}),i=f,a=[],o=[];i>=0;i--)a[f-i]=t[i][0],o[f-i]=e[i][0];return s.push({x:a,y:o,bicubic:c}),s}},{}],970:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib/extend").extendFlat;e.exports=function(t,e,r){var a,o,s,l,c,u,f,h,p,d,g,m,v,y,x=t["_"+e],b=t[e+"axis"],_=b._gridlines=[],w=b._minorgridlines=[],T=b._boundarylines=[],k=t["_"+r],M=t[r+"axis"];"array"===b.tickmode&&(b.tickvals=x.slice());var A=t._xctrl,S=t._yctrl,E=A[0].length,C=A.length,L=t._a.length,I=t._b.length;n.prepTicks(b),"array"===b.tickmode&&delete b.tickvals;var P=b.smoothing?3:1;function z(n){var i,a,o,s,l,c,u,f,p,d,g,m,v=[],y=[],x={};if("b"===e)for(a=t.b2j(n),o=Math.floor(Math.max(0,Math.min(I-2,a))),s=a-o,x.length=I,x.crossLength=L,x.xy=function(e){return t.evalxy([],e,a)},x.dxy=function(e,r){return t.dxydi([],e,o,r,s)},i=0;i0&&(p=t.dxydi([],i-1,o,0,s),v.push(l[0]+p[0]/3),y.push(l[1]+p[1]/3),d=t.dxydi([],i-1,o,1,s),v.push(f[0]-d[0]/3),y.push(f[1]-d[1]/3)),v.push(f[0]),y.push(f[1]),l=f;else for(i=t.a2i(n),c=Math.floor(Math.max(0,Math.min(L-2,i))),u=i-c,x.length=L,x.crossLength=I,x.xy=function(e){return t.evalxy([],i,e)},x.dxy=function(e,r){return t.dxydj([],c,e,u,r)},a=0;a0&&(g=t.dxydj([],c,a-1,u,0),v.push(l[0]+g[0]/3),y.push(l[1]+g[1]/3),m=t.dxydj([],c,a-1,u,1),v.push(f[0]-m[0]/3),y.push(f[1]-m[1]/3)),v.push(f[0]),y.push(f[1]),l=f;return x.axisLetter=e,x.axis=b,x.crossAxis=M,x.value=n,x.constvar=r,x.index=h,x.x=v,x.y=y,x.smoothing=M.smoothing,x}function O(n){var i,a,o,s,l,c=[],u=[],f={};if(f.length=x.length,f.crossLength=k.length,"b"===e)for(o=Math.max(0,Math.min(I-2,n)),l=Math.min(1,Math.max(0,n-o)),f.xy=function(e){return t.evalxy([],e,n)},f.dxy=function(e,r){return t.dxydi([],e,o,r,l)},i=0;ix.length-1||_.push(i(O(o),{color:b.gridcolor,width:b.gridwidth}));for(h=u;hx.length-1||g<0||g>x.length-1))for(m=x[s],v=x[g],a=0;ax[x.length-1]||w.push(i(z(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(O(0),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(O(x.length-1),{color:b.endlinecolor,width:b.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((x[x.length-1]-b.tick0)/b.dtick*(1+l)),Math.ceil((x[0]-b.tick0)/b.dtick/(1+l))].sort((function(t,e){return t-e})))[0],f=c[1],h=u;h<=f;h++)p=b.tick0+b.dtick*h,_.push(i(z(p),{color:b.gridcolor,width:b.gridwidth}));for(h=u-1;hx[x.length-1]||w.push(i(z(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(z(x[0]),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(z(x[x.length-1]),{color:b.endlinecolor,width:b.endlinewidth}))}}},{"../../lib/extend":768,"../../plots/cartesian/axes":828}],971:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../lib/extend").extendFlat;e.exports=function(t,e){var r,a,o,s=e._labels=[],l=e._gridlines;for(r=0;re.length&&(t=t.slice(0,e.length)):t=[],i=0;i90&&(p-=180,l=-l),{angle:p,flip:l,p:t.c2p(n,e,r),offsetMultplier:c}}},{}],985:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/drawing"),a=t("./map_1d_array"),o=t("./makepath"),s=t("./orient_text"),l=t("../../lib/svg_text_utils"),c=t("../../lib"),u=c.strRotate,f=c.strTranslate,h=t("../../constants/alignment");function p(t,e,r,i,s,l){var c="const-"+s+"-lines",u=r.selectAll("."+c).data(l);u.enter().append("path").classed(c,!0).style("vector-effect","non-scaling-stroke"),u.each((function(r){var i=r,s=i.x,l=i.y,c=a([],s,t.c2p),u=a([],l,e.c2p),f="M"+o(c,u,i.smoothing);n.select(this).attr("d",f).style("stroke-width",i.width).style("stroke",i.color).style("fill","none")})),u.exit().remove()}function d(t,e,r,a,o,c,h,p){var d=c.selectAll("text."+p).data(h);d.enter().append("text").classed(p,!0);var g=0,m={};return d.each((function(o,c){var h;if("auto"===o.axis.tickangle)h=s(a,e,r,o.xy,o.dxy);else{var p=(o.axis.tickangle+180)*Math.PI/180;h=s(a,e,r,o.xy,[Math.cos(p),Math.sin(p)])}c||(m={angle:h.angle,flip:h.flip});var d=(o.endAnchor?-1:1)*h.flip,v=n.select(this).attr({"text-anchor":d>0?"start":"end","data-notex":1}).call(i.font,o.font).text(o.text).call(l.convertToTspans,t),y=i.bBox(this);v.attr("transform",f(h.p[0],h.p[1])+u(h.angle)+f(o.axis.labelpadding*d,.3*y.height)),g=Math.max(g,y.width+o.axis.labelpadding)})),d.exit().remove(),m.maxExtent=g,m}e.exports=function(t,e,r,i){var l=e.xaxis,u=e.yaxis,f=t._fullLayout._clips;c.makeTraceGroups(i,r,"trace").each((function(e){var r=n.select(this),i=e[0],h=i.trace,g=h.aaxis,m=h.baxis,y=c.ensureSingle(r,"g","minorlayer"),x=c.ensureSingle(r,"g","majorlayer"),b=c.ensureSingle(r,"g","boundarylayer"),_=c.ensureSingle(r,"g","labellayer");r.style("opacity",h.opacity),p(l,u,x,g,"a",g._gridlines),p(l,u,x,m,"b",m._gridlines),p(l,u,y,g,"a",g._minorgridlines),p(l,u,y,m,"b",m._minorgridlines),p(l,u,b,g,"a-boundary",g._boundarylines),p(l,u,b,m,"b-boundary",m._boundarylines);var w=d(t,l,u,h,i,_,g._labels,"a-label"),T=d(t,l,u,h,i,_,m._labels,"b-label");!function(t,e,r,n,i,a,o,l){var u,f,h,p,d=c.aggNums(Math.min,null,r.a),g=c.aggNums(Math.max,null,r.a),m=c.aggNums(Math.min,null,r.b),y=c.aggNums(Math.max,null,r.b);u=.5*(d+g),f=m,h=r.ab2xy(u,f,!0),p=r.dxyda_rough(u,f),void 0===o.angle&&c.extendFlat(o,s(r,i,a,h,r.dxydb_rough(u,f)));v(t,e,r,n,h,p,r.aaxis,i,a,o,"a-title"),u=d,f=.5*(m+y),h=r.ab2xy(u,f,!0),p=r.dxydb_rough(u,f),void 0===l.angle&&c.extendFlat(l,s(r,i,a,h,r.dxyda_rough(u,f)));v(t,e,r,n,h,p,r.baxis,i,a,l,"b-title")}(t,_,h,i,l,u,w,T),function(t,e,r,n,i){var s,l,u,f,h=r.select("#"+t._clipPathId);h.size()||(h=r.append("clipPath").classed("carpetclip",!0));var p=c.ensureSingle(h,"path","carpetboundary"),d=e.clipsegments,g=[];for(f=0;f90&&y<270,b=n.select(this);b.text(h.title.text).call(l.convertToTspans,t),x&&(_=(-l.lineCount(b)+m)*g*a-_),b.attr("transform",f(e.p[0],e.p[1])+u(e.angle)+f(0,_)).attr("text-anchor","middle").call(i.font,h.title.font)})),b.exit().remove()}},{"../../components/drawing":665,"../../constants/alignment":745,"../../lib":778,"../../lib/svg_text_utils":803,"./makepath":982,"./map_1d_array":983,"./orient_text":984,d3:169}],986:[function(t,e,r){"use strict";var n=t("./constants"),i=t("../../lib/search").findBin,a=t("./compute_control_points"),o=t("./create_spline_evaluator"),s=t("./create_i_derivative_evaluator"),l=t("./create_j_derivative_evaluator");e.exports=function(t){var e=t._a,r=t._b,c=e.length,u=r.length,f=t.aaxis,h=t.baxis,p=e[0],d=e[c-1],g=r[0],m=r[u-1],v=e[e.length-1]-e[0],y=r[r.length-1]-r[0],x=v*n.RELATIVE_CULL_TOLERANCE,b=y*n.RELATIVE_CULL_TOLERANCE;p-=x,d+=x,g-=b,m+=b,t.isVisible=function(t,e){return t>p&&tg&&ed||em},t.setScale=function(){var e=t._x,r=t._y,n=a(t._xctrl,t._yctrl,e,r,f.smoothing,h.smoothing);t._xctrl=n[0],t._yctrl=n[1],t.evalxy=o([t._xctrl,t._yctrl],c,u,f.smoothing,h.smoothing),t.dxydi=s([t._xctrl,t._yctrl],f.smoothing,h.smoothing),t.dxydj=l([t._xctrl,t._yctrl],f.smoothing,h.smoothing)},t.i2a=function(t){var r=Math.max(0,Math.floor(t[0]),c-2),n=t[0]-r;return(1-n)*e[r]+n*e[r+1]},t.j2b=function(t){var e=Math.max(0,Math.floor(t[1]),c-2),n=t[1]-e;return(1-n)*r[e]+n*r[e+1]},t.ij2ab=function(e){return[t.i2a(e[0]),t.j2b(e[1])]},t.a2i=function(t){var r=Math.max(0,Math.min(i(t,e),c-2)),n=e[r],a=e[r+1];return Math.max(0,Math.min(c-1,r+(t-n)/(a-n)))},t.b2j=function(t){var e=Math.max(0,Math.min(i(t,r),u-2)),n=r[e],a=r[e+1];return Math.max(0,Math.min(u-1,e+(t-n)/(a-n)))},t.ab2ij=function(e){return[t.a2i(e[0]),t.b2j(e[1])]},t.i2c=function(e,r){return t.evalxy([],e,r)},t.ab2xy=function(n,i,a){if(!a&&(ne[c-1]|ir[u-1]))return[!1,!1];var o=t.a2i(n),s=t.b2j(i),l=t.evalxy([],o,s);if(a){var f,h,p,d,g=0,m=0,v=[];ne[c-1]?(f=c-2,h=1,g=(n-e[c-1])/(e[c-1]-e[c-2])):h=o-(f=Math.max(0,Math.min(c-2,Math.floor(o)))),ir[u-1]?(p=u-2,d=1,m=(i-r[u-1])/(r[u-1]-r[u-2])):d=s-(p=Math.max(0,Math.min(u-2,Math.floor(s)))),g&&(t.dxydi(v,f,p,h,d),l[0]+=v[0]*g,l[1]+=v[1]*g),m&&(t.dxydj(v,f,p,h,d),l[0]+=v[0]*m,l[1]+=v[1]*m)}return l},t.c2p=function(t,e,r){return[e.c2p(t[0]),r.c2p(t[1])]},t.p2x=function(t,e,r){return[e.p2c(t[0]),r.p2c(t[1])]},t.dadi=function(t){var r=Math.max(0,Math.min(e.length-2,t));return e[r+1]-e[r]},t.dbdj=function(t){var e=Math.max(0,Math.min(r.length-2,t));return r[e+1]-r[e]},t.dxyda=function(e,r,n,i){var a=t.dxydi(null,e,r,n,i),o=t.dadi(e,n);return[a[0]/o,a[1]/o]},t.dxydb=function(e,r,n,i){var a=t.dxydj(null,e,r,n,i),o=t.dbdj(r,i);return[a[0]/o,a[1]/o]},t.dxyda_rough=function(e,r,n){var i=v*(n||.1),a=t.ab2xy(e+i,r,!0),o=t.ab2xy(e-i,r,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dxydb_rough=function(e,r,n){var i=y*(n||.1),a=t.ab2xy(e,r+i,!0),o=t.ab2xy(e,r-i,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dpdx=function(t){return t._m},t.dpdy=function(t){return t._m}}},{"../../lib/search":798,"./compute_control_points":974,"./constants":975,"./create_i_derivative_evaluator":976,"./create_j_derivative_evaluator":977,"./create_spline_evaluator":978}],987:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e,r){var i,a,o,s=[],l=[],c=t[0].length,u=t.length;function f(e,r){var n,i=0,a=0;return e>0&&void 0!==(n=t[r][e-1])&&(a++,i+=n),e0&&void 0!==(n=t[r-1][e])&&(a++,i+=n),r0&&a0&&i1e-5);return n.log("Smoother converged to",k,"after",M,"iterations"),t}},{"../../lib":778}],988:[function(t,e,r){"use strict";var n=t("../../lib").isArray1D;e.exports=function(t,e,r){var i=r("x"),a=i&&i.length,o=r("y"),s=o&&o.length;if(!a&&!s)return!1;if(e._cheater=!i,a&&!n(i)||s&&!n(o))e._length=null;else{var l=a?i.length:1/0;s&&(l=Math.min(l,o.length)),e.a&&e.a.length&&(l=Math.min(l,e.a.length)),e.b&&e.b.length&&(l=Math.min(l,e.b.length)),e._length=l}return!0}},{"../../lib":778}],989:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").hovertemplateAttrs,i=t("../scattergeo/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../plots/attributes"),s=t("../../components/color/attributes").defaultLine,l=t("../../lib/extend").extendFlat,c=i.marker.line;e.exports=l({locations:{valType:"data_array",editType:"calc"},locationmode:i.locationmode,z:{valType:"data_array",editType:"calc"},geojson:l({},i.geojson,{}),featureidkey:i.featureidkey,text:l({},i.text,{}),hovertext:l({},i.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:"calc"},opacity:{valType:"number",arrayOk:!0,min:0,max:1,dflt:1,editType:"style"},editType:"calc"},selected:{marker:{opacity:i.selected.marker.opacity,editType:"plot"},editType:"plot"},unselected:{marker:{opacity:i.unselected.marker.opacity,editType:"plot"},editType:"plot"},hoverinfo:l({},o.hoverinfo,{editType:"calc",flags:["location","z","text","name"]}),hovertemplate:n(),showlegend:l({},o.showlegend,{dflt:!1})},a("",{cLetter:"z",editTypeOverride:"calc"}))},{"../../components/color/attributes":642,"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scattergeo/attributes":1229}],990:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../constants/numerical").BADNUM,a=t("../../components/colorscale/calc"),o=t("../scatter/arrays_to_calcdata"),s=t("../scatter/calc_selection");function l(t){return t&&"string"==typeof t}e.exports=function(t,e){var r,c=e._length,u=new Array(c);r=e.geojson?function(t){return l(t)||n(t)}:l;for(var f=0;f")}(t,f,o),[t]}},{"../../lib":778,"../../plots/cartesian/axes":828,"./attributes":989}],994:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),calc:t("./calc"),calcGeoJSON:t("./plot").calcGeoJSON,plot:t("./plot").plot,style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"choropleth",basePlotModule:t("../../plots/geo"),categories:["geo","noOpacity","showLegend"],meta:{}}},{"../../plots/geo":860,"../heatmap/colorbar":1068,"./attributes":989,"./calc":990,"./defaults":991,"./event_data":992,"./hover":993,"./plot":995,"./select":996,"./style":997}],995:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../lib/geo_location_utils"),o=t("../../lib/topojson_utils").getTopojsonFeatures,s=t("../../plots/cartesian/autorange").findExtremes,l=t("./style").style;e.exports={calcGeoJSON:function(t,e){for(var r=t[0].trace,n=e[r.geo],i=n._subplot,l=r.locationmode,c=r._length,u="geojson-id"===l?a.extractTraceFeature(t):o(r,i.topojson),f=[],h=[],p=0;p<c;p++){var d=t[p],g="geojson-id"===l?d.fOut:a.locationToFeature(l,d.loc,u);if(g){d.geojson=g,d.ct=g.properties.ct,d._polygons=a.feature2polygons(g);var m=a.computeBbox(g);f.push(m[0],m[2]),h.push(m[1],m[3])}else d.geojson=null}if("geojson"===n.fitbounds&&"geojson-id"===l){var v=a.computeBbox(a.getTraceGeojson(r));f=[v[0],v[2]],h=[v[1],v[3]]}var y={padded:!0};r._extremes.lon=s(n.lonaxis._ax,f,y),r._extremes.lat=s(n.lataxis._ax,h,y)},plot:function(t,e,r){var a=e.layers.backplot.select(".choroplethlayer");i.makeTraceGroups(a,r,"trace choropleth").each((function(e){var r=n.select(this).selectAll("path.choroplethlocation").data(i.identity);r.enter().append("path").classed("choroplethlocation",!0),r.exit().remove(),l(t,e)}))}}},{"../../lib":778,"../../lib/geo_location_utils":771,"../../lib/topojson_utils":806,"../../plots/cartesian/autorange":827,"./style":997,d3:169}],996:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)(i=(n=s[r]).ct)&&(a=l.c2p(i),o=c.c2p(i),e.contains([a,o],null,r,t)?(u.push({pointNumber:r,lon:i[0],lat:i[1]}),n.selected=1):n.selected=0);return u}},{}],997:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../../components/drawing"),o=t("../../components/colorscale");function s(t,e){var r=e[0].trace,s=e[0].node3.selectAll(".choroplethlocation"),l=r.marker||{},c=l.line||{},u=o.makeColorScaleFuncFromTrace(r);s.each((function(t){n.select(this).attr("fill",u(t.z)).call(i.stroke,t.mlc||c.color).call(a.dashLine,"",t.mlw||c.width||0).style("opacity",l.opacity)})),a.selectedPointStyle(s,r,t)}e.exports={style:function(t,e){e&&s(t,e)},styleOnSelect:function(t,e){var r=e[0].node3,n=e[0].trace;n.selectedpoints?a.selectedPointStyle(r.selectAll(".choroplethlocation"),n,t):s(t,e)}}},{"../../components/color":643,"../../components/colorscale":655,"../../components/drawing":665,d3:169}],998:[function(t,e,r){"use strict";var n=t("../choropleth/attributes"),i=t("../../components/colorscale/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat;e.exports=s({locations:{valType:"data_array",editType:"calc"},z:{valType:"data_array",editType:"calc"},geojson:{valType:"any",editType:"calc"},featureidkey:s({},n.featureidkey,{}),below:{valType:"string",editType:"plot"},text:n.text,hovertext:n.hovertext,marker:{line:{color:s({},n.marker.line.color,{editType:"plot"}),width:s({},n.marker.line.width,{editType:"plot"}),editType:"calc"},opacity:s({},n.marker.opacity,{editType:"plot"}),editType:"calc"},selected:{marker:{opacity:s({},n.selected.marker.opacity,{editType:"plot"}),editType:"plot"},editType:"plot"},unselected:{marker:{opacity:s({},n.unselected.marker.opacity,{editType:"plot"}),editType:"plot"},editType:"plot"},hoverinfo:n.hoverinfo,hovertemplate:a({},{keys:["properties"]}),showlegend:s({},o.showlegend,{dflt:!1})},i("",{cLetter:"z",editTypeOverride:"calc"}))},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../choropleth/attributes":989}],999:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../components/colorscale"),o=t("../../components/drawing"),s=t("../../lib/geojson_utils").makeBlank,l=t("../../lib/geo_location_utils");function c(t){var e,r=t[0].trace,n=r._opts;if(r.selectedpoints){for(var a=o.makeSelectedPointStyleFns(r),s=0;s<t.length;s++){var l=t[s];l.fOut&&(l.fOut.properties.mo2=a.selectedOpacityFn(l))}e={type:"identity",property:"mo2"}}else e=i.isArrayOrTypedArray(r.marker.opacity)?{type:"identity",property:"mo"}:r.marker.opacity;return i.extendFlat(n.fill.paint,{"fill-opacity":e}),i.extendFlat(n.line.paint,{"line-opacity":e}),n}e.exports={convert:function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,o={layout:{visibility:"none"},paint:{}},u={layout:{visibility:"none"},paint:{}},f=e._opts={fill:o,line:u,geojson:s()};if(!r)return f;var h=l.extractTraceFeature(t);if(!h)return f;var p,d,g,m=a.makeColorScaleFuncFromTrace(e),v=e.marker,y=v.line||{};i.isArrayOrTypedArray(v.opacity)&&(p=function(t){var e=t.mo;return n(e)?+i.constrain(e,0,1):0}),i.isArrayOrTypedArray(y.color)&&(d=function(t){return t.mlc}),i.isArrayOrTypedArray(y.width)&&(g=function(t){return t.mlw});for(var x=0;x<t.length;x++){var b=t[x],_=b.fOut;if(_){var w=_.properties;w.fc=m(b.z),p&&(w.mo=p(b)),d&&(w.mlc=d(b)),g&&(w.mlw=g(b)),b.ct=w.ct,b._polygons=l.feature2polygons(_)}}var T=p?{type:"identity",property:"mo"}:v.opacity;return i.extendFlat(o.paint,{"fill-color":{type:"identity",property:"fc"},"fill-opacity":T}),i.extendFlat(u.paint,{"line-color":d?{type:"identity",property:"mlc"}:y.color,"line-width":g?{type:"identity",property:"mlw"}:y.width,"line-opacity":T}),o.layout.visibility="visible",u.layout.visibility="visible",f.geojson={type:"FeatureCollection",features:h},c(t),f},convertOnSelect:c}},{"../../components/colorscale":655,"../../components/drawing":665,"../../lib":778,"../../lib/geo_location_utils":771,"../../lib/geojson_utils":772,"fast-isnumeric":241}],1e3:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/colorscale/defaults"),a=t("./attributes");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s("locations"),c=s("z"),u=s("geojson");n.isArrayOrTypedArray(l)&&l.length&&n.isArrayOrTypedArray(c)&&c.length&&("string"==typeof u&&""!==u||n.isPlainObject(u))?(s("featureidkey"),e._length=Math.min(l.length,c.length),s("below"),s("text"),s("hovertext"),s("hovertemplate"),s("marker.line.width")&&s("marker.line.color"),s("marker.opacity"),i(t,e,o,s,{prefix:"",cLetter:"z"}),n.coerceSelectionMarkerOpacity(e,s)):e.visible=!1}},{"../../components/colorscale/defaults":653,"../../lib":778,"./attributes":998}],1001:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),calc:t("../choropleth/calc"),plot:t("./plot"),hoverPoints:t("../choropleth/hover"),eventData:t("../choropleth/event_data"),selectPoints:t("../choropleth/select"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.updateOnSelect(e)},getBelow:function(t,e){for(var r=e.getMapLayers(),n=r.length-2;n>=0;n--){var i=r[n].id;if("string"==typeof i&&0===i.indexOf("water"))for(var a=n+1;a<r.length;a++)if("string"==typeof(i=r[a].id)&&-1===i.indexOf("plotly-"))return i}},moduleType:"trace",name:"choroplethmapbox",basePlotModule:t("../../plots/mapbox"),categories:["mapbox","gl","noOpacity","showLegend"],meta:{hr_name:"choropleth_mapbox"}}},{"../../plots/mapbox":885,"../choropleth/calc":990,"../choropleth/event_data":992,"../choropleth/hover":993,"../choropleth/select":996,"../heatmap/colorbar":1068,"./attributes":998,"./defaults":1e3,"./plot":1002}],1002:[function(t,e,r){"use strict";var n=t("./convert").convert,i=t("./convert").convertOnSelect,a=t("../../plots/mapbox/constants").traceLayerPrefix;function o(t,e){this.type="choroplethmapbox",this.subplot=t,this.uid=e,this.sourceId="source-"+e,this.layerList=[["fill",a+e+"-fill"],["line",a+e+"-line"]],this.below=null}var s=o.prototype;s.update=function(t){this._update(n(t))},s.updateOnSelect=function(t){this._update(i(t))},s._update=function(t){var e=this.subplot,r=this.layerList,n=e.belowLookup["trace-"+this.uid];e.map.getSource(this.sourceId).setData(t.geojson),n!==this.below&&(this._removeLayers(),this._addLayers(t,n),this.below=n);for(var i=0;i<r.length;i++){var a=r[i],o=a[0],s=a[1],l=t[o];e.setOptions(s,"setLayoutProperty",l.layout),"visible"===l.layout.visibility&&e.setOptions(s,"setPaintProperty",l.paint)}},s._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,i=this.sourceId,a=0;a<n.length;a++){var o=n[a],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:i,layout:l.layout,paint:l.paint},e)}},s._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},s.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new o(t,r.uid),a=i.sourceId,s=n(e),l=i.below=t.belowLookup["trace-"+r.uid];return t.map.addSource(a,{type:"geojson",data:s.geojson}),i._addLayers(s,l),e[0].trace._glTrace=i,i}},{"../../plots/mapbox/constants":883,"./convert":999}],1003:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../mesh3d/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l={x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},u:{valType:"data_array",editType:"calc"},v:{valType:"data_array",editType:"calc"},w:{valType:"data_array",editType:"calc"},sizemode:{valType:"enumerated",values:["scaled","absolute"],editType:"calc",dflt:"scaled"},sizeref:{valType:"number",editType:"calc",min:0},anchor:{valType:"enumerated",editType:"calc",values:["tip","tail","cm","center"],dflt:"cm"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:i({editType:"calc"},{keys:["norm"]}),showlegend:s({},o.showlegend,{dflt:!1})};s(l,n("",{colorAttr:"u/v/w norm",showScaleDflt:!0,editTypeOverride:"calc"}));["opacity","lightposition","lighting"].forEach((function(t){l[t]=a[t]})),l.hoverinfo=s({},o.hoverinfo,{editType:"calc",flags:["x","y","z","u","v","w","norm","text","name"],dflt:"x+y+z+norm+text+name"}),l.transforms=void 0,e.exports=l},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../mesh3d/attributes":1128}],1004:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){for(var r=e.u,i=e.v,a=e.w,o=Math.min(e.x.length,e.y.length,e.z.length,r.length,i.length,a.length),s=-1/0,l=1/0,c=0;co.level||o.starts.length&&a===o.level)}break;case"constraint":if(n.prefixBoundary=!1,n.edgepaths.length)return;var s=n.x.length,l=n.y.length,c=-1/0,u=1/0;for(r=0;r":p>c&&(n.prefixBoundary=!0);break;case"<":(pc||n.starts.length&&h===u)&&(n.prefixBoundary=!0);break;case"][":f=Math.min(p[0],p[1]),h=Math.max(p[0],p[1]),fc&&(n.prefixBoundary=!0)}}}},{}],1011:[function(t,e,r){"use strict";var n=t("../../components/colorscale"),i=t("./make_color_map"),a=t("./end_plus");e.exports={min:"zmin",max:"zmax",calc:function(t,e,r){var o=e.contours,s=e.line,l=o.size||1,c=o.coloring,u=i(e,{isColorbar:!0});if("heatmap"===c){var f=n.extractOpts(e);r._fillgradient=f.reversescale?n.flipScale(f.colorscale):f.colorscale,r._zrange=[f.min,f.max]}else"fill"===c&&(r._fillcolor=u);r._line={color:"lines"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},r._levels={start:o.start,end:a(o),size:l}}}},{"../../components/colorscale":655,"./end_plus":1019,"./make_color_map":1024}],1012:[function(t,e,r){"use strict";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},{}],1013:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("./label_defaults"),a=t("../../components/color"),o=a.addOpacity,s=a.opacity,l=t("../../constants/filter_ops"),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(t,e,r,a,l,f){var h,p,d,g=e.contours,m=r("contours.operation");(g._operation=c[m],function(t,e){var r;-1===u.indexOf(e.operation)?(t("contours.value",[0,1]),Array.isArray(e.value)?e.value.length>2?e.value=e.value.slice(2):0===e.length?e.value=[0,1]:e.length<2?(r=parseFloat(e.value[0]),e.value=[r,r+1]):e.value=[parseFloat(e.value[0]),parseFloat(e.value[1])]:n(e.value)&&(r=parseFloat(e.value),e.value=[r,r+1])):(t("contours.value",0),n(e.value)||(Array.isArray(e.value)?e.value=parseFloat(e.value[0]):e.value=0))}(r,g),"="===m?h=g.showlines=!0:(h=r("contours.showlines"),d=r("fillcolor",o((t.line||{}).color||l,.5))),h)&&(p=r("line.color",d&&s(d)?o(e.fillcolor,1):l),r("line.width",2),r("line.dash"));r("line.smoothing"),i(r,a,p,f)}},{"../../components/color":643,"../../constants/filter_ops":749,"./label_defaults":1023,"fast-isnumeric":241}],1014:[function(t,e,r){"use strict";var n=t("../../constants/filter_ops"),i=t("fast-isnumeric");function a(t,e){var r,a=Array.isArray(e);function o(t){return i(t)?+t:null}return-1!==n.COMPARISON_OPS2.indexOf(t)?r=o(a?e[0]:e):-1!==n.INTERVAL_OPS.indexOf(t)?r=a?[o(e[0]),o(e[1])]:[o(e),o(e)]:-1!==n.SET_OPS.indexOf(t)&&(r=a?e.map(o):[o(e)]),r}function o(t){return function(e){e=a(t,e);var r=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]);return{start:r,end:n,size:n-r}}}function s(t){return function(e){return{start:e=a(t,e),end:1/0,size:1/0}}}e.exports={"[]":o("[]"),"][":o("]["),">":s(">"),"<":s("<"),"=":s("=")}},{"../../constants/filter_ops":749,"fast-isnumeric":241}],1015:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i=n("contours.start"),a=n("contours.end"),o=!1===i||!1===a,s=r("contours.size");!(o?e.autocontour=!0:r("autocontour",!1))&&s||r("ncontours")}},{}],1016:[function(t,e,r){"use strict";var n=t("../../lib");function i(t){return n.extendFlat({},t,{edgepaths:n.extendDeep([],t.edgepaths),paths:n.extendDeep([],t.paths),starts:n.extendDeep([],t.starts)})}e.exports=function(t,e){var r,a,o,s=function(t){return t.reverse()},l=function(t){return t};switch(e){case"=":case"<":return t;case">":for(1!==t.length&&n.warn("Contour data invalid for the specified inequality operation."),a=t[0],r=0;r1e3){n.warn("Too many contours, clipping at 1000",t);break}return l}},{"../../lib":778,"./constraint_mapping":1014,"./end_plus":1019}],1019:[function(t,e,r){"use strict";e.exports=function(t){return t.end+t.size/1e6}},{}],1020:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./constants");function a(t,e,r,n){return Math.abs(t[0]-e[0])20&&e?208===t||1114===t?n=0===r[0]?1:-1:a=0===r[1]?1:-1:-1!==i.BOTTOMSTART.indexOf(t)?a=1:-1!==i.LEFTSTART.indexOf(t)?n=1:-1!==i.TOPSTART.indexOf(t)?a=-1:n=-1;return[n,a]}(f,r,e),p=[s(t,e,[-h[0],-h[1]])],d=t.z.length,g=t.z[0].length,m=e.slice(),v=h.slice();for(c=0;c<1e4;c++){if(f>20?(f=i.CHOOSESADDLE[f][(h[0]||h[1])<0?0:1],t.crossings[u]=i.SADDLEREMAINDER[f]):delete t.crossings[u],!(h=i.NEWDELTA[f])){n.log("Found bad marching index:",f,e,t.level);break}p.push(s(t,e,h)),e[0]+=h[0],e[1]+=h[1],u=e.join(","),a(p[p.length-1],p[p.length-2],o,l)&&p.pop();var y=h[0]&&(e[0]<0||e[0]>g-2)||h[1]&&(e[1]<0||e[1]>d-2);if(e[0]===m[0]&&e[1]===m[1]&&h[0]===v[0]&&h[1]===v[1]||r&&y)break;f=t.crossings[u]}1e4===c&&n.log("Infinite loop in contour?");var x,b,_,w,T,k,M,A,S,E,C,L,I,P,z,O=a(p[0],p[p.length-1],o,l),D=0,R=.2*t.smoothing,F=[],B=0;for(c=1;c=B;c--)if((x=F[c])=B&&x+F[b]A&&S--,t.edgepaths[S]=C.concat(p,E));break}V||(t.edgepaths[A]=p.concat(E))}for(A=0;At?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);return 5===r||10===r?t>(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4?5===r?713:1114:5===r?104:208:15===r?0:r}e.exports=function(t){var e,r,a,o,s,l,c,u,f,h=t[0].z,p=h.length,d=h[0].length,g=2===p||2===d;for(r=0;r<p-1;r++)for(o=[],0===r&&(o=o.concat(n.BOTTOMSTART)),r===p-2&&(o=o.concat(n.TOPSTART)),e=0;e<d-1;e++)for(a=o.slice(),0===e&&(a=a.concat(n.LEFTSTART)),e===d-2&&(a=a.concat(n.RIGHTSTART)),s=e+","+r,l=[[h[r][e],h[r][e+1]],[h[r+1][e],h[r+1][e+1]]],f=0;f<t.length;f++)(c=i((u=t[f]).level,l))&&(u.crossings[s]=c,-1!==a.indexOf(c)&&(u.starts.push([e,r]),g&&-1!==a.indexOf(c,a.indexOf(c)+1)&&u.starts.push([e,r])))}},{"./constants":1012}],1026:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../components/colorscale"),s=t("../../lib/svg_text_utils"),l=t("../../plots/cartesian/axes"),c=t("../../plots/cartesian/set_convert"),u=t("../heatmap/plot"),f=t("./make_crossings"),h=t("./find_all_paths"),p=t("./empty_pathinfo"),d=t("./convert_to_constraints"),g=t("./close_boundaries"),m=t("./constants"),v=m.LABELOPTIMIZER;function y(t,e){var r,n,o,s,l,c,u,f="",h=0,p=t.edgepaths.map((function(t,e){return e})),d=!0;function g(t){return Math.abs(t[1]-e[2][1])<.01}function m(t){return Math.abs(t[0]-e[0][0])<.01}function v(t){return Math.abs(t[0]-e[2][0])<.01}for(;p.length;){for(c=a.smoothopen(t.edgepaths[h],t.smoothing),f+=d?c:c.replace(/^M/,"L"),p.splice(p.indexOf(h),1),r=t.edgepaths[h][t.edgepaths[h].length-1],s=-1,o=0;o<4;o++){if(!r){i.log("Missing end?",h,t);break}for(u=r,Math.abs(u[1]-e[0][1])<.01&&!v(r)?n=e[1]:m(r)?n=e[0]:g(r)?n=e[3]:v(r)&&(n=e[2]),l=0;l<t.edgepaths.length;l++){var y=t.edgepaths[l][0];Math.abs(r[0]-n[0])<.01?Math.abs(r[0]-y[0])<.01&&(y[1]-r[1])*(n[1]-y[1])>=0&&(n=y,s=l):Math.abs(r[1]-n[1])<.01?Math.abs(r[1]-y[1])<.01&&(y[0]-r[0])*(n[0]-y[0])>=0&&(n=y,s=l):i.log("endpt to newendpt is not vert. or horz.",r,n,y)}if(r=n,s>=0)break;f+="L"+n}if(s===t.edgepaths.length){i.log("unclosed perimeter path");break}h=s,(d=-1===p.indexOf(h))&&(h=p[0],f+="Z")}for(h=0;hn.center?n.right-s:s-n.left)/(u+Math.abs(Math.sin(c)*o)),p=(l>n.middle?n.bottom-l:l-n.top)/(Math.abs(f)+Math.cos(c)*o);if(h<1||p<1)return 1/0;var d=v.EDGECOST*(1/(h-1)+1/(p-1));d+=v.ANGLECOST*c*c;for(var g=s-u,m=l-f,y=s+u,x=l+f,b=0;b2*v.MAXCOST)break;p&&(s/=2),l=(o=c-s/2)+1.5*s}if(h<=v.MAXCOST)return u},r.addLabelData=function(t,e,r,n){var i=e.fontSize,a=e.width+i/3,o=Math.max(0,e.height-i/3),s=t.x,l=t.y,c=t.theta,u=Math.sin(c),f=Math.cos(c),h=function(t,e){return[s+t*f-e*u,l+t*u+e*f]},p=[h(-a/2,-o/2),h(-a/2,o/2),h(a/2,o/2),h(a/2,-o/2)];r.push({text:e.text,x:s,y:l,dy:e.dy,theta:c,level:e.level,width:a,height:o}),n.push(p)},r.drawLabels=function(t,e,r,a,o){var l=t.selectAll("text").data(e,(function(t){return t.text+","+t.x+","+t.y+","+t.theta}));if(l.exit().remove(),l.enter().append("text").attr({"data-notex":1,"text-anchor":"middle"}).each((function(t){var e=t.x+Math.sin(t.theta)*t.dy,i=t.y-Math.cos(t.theta)*t.dy;n.select(this).text(t.text).attr({x:e,y:i,transform:"rotate("+180*t.theta/Math.PI+" "+e+" "+i+")"}).call(s.convertToTspans,r)})),o){for(var c="",u=0;ur.end&&(r.start=r.end=(r.start+r.end)/2),t._input.contours||(t._input.contours={}),i.extendFlat(t._input.contours,{start:r.start,end:r.end,size:r.size}),t._input.autocontour=!0}else if("constraint"!==r.type){var c,u=r.start,f=r.end,h=t._input.contours;if(u>f&&(r.start=h.start=f,f=r.end=h.end=u,u=r.start),!(r.size>0))c=u===f?1:a(u,f,t.ncontours).dtick,h.size=r.size=c}}},{"../../lib":778,"../../plots/cartesian/axes":828}],1028:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/drawing"),a=t("../heatmap/style"),o=t("./make_color_map");e.exports=function(t){var e=n.select(t).selectAll("g.contour");e.style("opacity",(function(t){return t[0].trace.opacity})),e.each((function(t){var e=n.select(this),r=t[0].trace,a=r.contours,s=r.line,l=a.size||1,c=a.start,u="constraint"===a.type,f=!u&&"lines"===a.coloring,h=!u&&"fill"===a.coloring,p=f||h?o(r):null;e.selectAll("g.contourlevel").each((function(t){n.select(this).selectAll("path").call(i.lineGroupStyle,s.width,f?p(t.level):s.color,s.dash)}));var d=a.labelfont;if(e.selectAll("g.contourlabels text").each((function(t){i.font(n.select(this),{family:d.family,size:d.size,color:d.color||(f?p(t.level):s.color)})})),u)e.selectAll("g.contourfill path").style("fill",r.fillcolor);else if(h){var g;e.selectAll("g.contourfill path").style("fill",(function(t){return void 0===g&&(g=t.level),p(t.level+.5*l)})),void 0===g&&(g=c),e.selectAll("g.contourbg path").style("fill",p(g-.5*l))}})),a(t)}},{"../../components/drawing":665,"../heatmap/style":1077,"./make_color_map":1024,d3:169}],1029:[function(t,e,r){"use strict";var n=t("../../components/colorscale/defaults"),i=t("./label_defaults");e.exports=function(t,e,r,a,o){var s,l=r("contours.coloring"),c="";"fill"===l&&(s=r("contours.showlines")),!1!==s&&("lines"!==l&&(c=r("line.color","#000")),r("line.width",.5),r("line.dash")),"none"!==l&&(!0!==t.showlegend&&(e.showlegend=!1),e._dfltShowLegend=!1,n(t,e,a,r,{prefix:"",cLetter:"z"})),r("line.smoothing"),i(r,a,c,o)}},{"../../components/colorscale/defaults":653,"./label_defaults":1023}],1030:[function(t,e,r){"use strict";var n=t("../heatmap/attributes"),i=t("../contour/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../lib/extend").extendFlat,s=i.contours;e.exports=o({carpet:{valType:"string",editType:"calc"},z:n.z,a:n.x,a0:n.x0,da:n.dx,b:n.y,b0:n.y0,db:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,atype:n.xtype,btype:n.ytype,fillcolor:i.fillcolor,autocontour:i.autocontour,ncontours:i.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:"enumerated",values:["fill","lines","none"],dflt:"fill",editType:"calc"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:"calc",impliedEdits:{autocontour:!1}},line:{color:i.line.color,width:i.line.width,dash:i.line.dash,smoothing:i.line.smoothing,editType:"plot"},transforms:void 0},a("",{cLetter:"z",autoColorDflt:!1}))},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../contour/attributes":1008,"../heatmap/attributes":1065}],1031:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc"),i=t("../../lib"),a=t("../heatmap/convert_column_xyz"),o=t("../heatmap/clean_2d_array"),s=t("../heatmap/interp2d"),l=t("../heatmap/find_empties"),c=t("../heatmap/make_bound_array"),u=t("./defaults"),f=t("../carpet/lookup_carpetid"),h=t("../contour/set_contours");e.exports=function(t,e){var r=e._carpetTrace=f(t,e);if(r&&r.visible&&"legendonly"!==r.visible){if(!e.a||!e.b){var p=t.data[r.index],d=t.data[e.index];d.a||(d.a=p.a),d.b||(d.b=p.b),u(d,e,e._defaultColor,t._fullLayout)}var g=function(t,e){var r,u,f,h,p,d,g,m=e._carpetTrace,v=m.aaxis,y=m.baxis;v._minDtick=0,y._minDtick=0,i.isArray1D(e.z)&&a(e,v,y,"a","b",["z"]);r=e._a=e._a||e.a,h=e._b=e._b||e.b,r=r?v.makeCalcdata(e,"_a"):[],h=h?y.makeCalcdata(e,"_b"):[],u=e.a0||0,f=e.da||1,p=e.b0||0,d=e.db||1,g=e._z=o(e._z||e.z,e.transpose),e._emptypoints=l(g),s(g,e._emptypoints);var x=i.maxRowLength(g),b="scaled"===e.xtype?"":r,_=c(e,b,u,f,x,v),w="scaled"===e.ytype?"":h,T=c(e,w,p,d,g.length,y),k={a:_,b:T,z:g};"levels"===e.contours.type&&"none"!==e.contours.coloring&&n(t,e,{vals:g,containerStr:"",cLetter:"z"});return[k]}(t,e);return h(e,e._z),g}}},{"../../components/colorscale/calc":651,"../../lib":778,"../carpet/lookup_carpetid":981,"../contour/set_contours":1027,"../heatmap/clean_2d_array":1067,"../heatmap/convert_column_xyz":1069,"../heatmap/find_empties":1071,"../heatmap/interp2d":1074,"../heatmap/make_bound_array":1075,"./defaults":1032}],1032:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../heatmap/xyz_defaults"),a=t("./attributes"),o=t("../contour/constraint_defaults"),s=t("../contour/contours_defaults"),l=t("../contour/style_defaults");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,a,r,i)}if(u("carpet"),t.a&&t.b){if(!i(t,e,u,c,"a","b"))return void(e.visible=!1);u("text"),"constraint"===u("contours.type")?o(t,e,u,c,r,{hasHover:!1}):(s(t,e,u,(function(r){return n.coerce2(t,e,a,r)})),l(t,e,u,c,{hasHover:!1}))}else e._defaultColor=r,e._length=null}},{"../../lib":778,"../contour/constraint_defaults":1013,"../contour/contours_defaults":1015,"../contour/style_defaults":1029,"../heatmap/xyz_defaults":1079,"./attributes":1030}],1033:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../contour/colorbar"),calc:t("./calc"),plot:t("./plot"),style:t("../contour/style"),moduleType:"trace",name:"contourcarpet",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","carpet","contour","symbols","showLegend","hasLines","carpetDependent","noHover","noSortingByValue"],meta:{}}},{"../../plots/cartesian":841,"../contour/colorbar":1011,"../contour/style":1028,"./attributes":1030,"./calc":1031,"./defaults":1032,"./plot":1034}],1034:[function(t,e,r){"use strict";var n=t("d3"),i=t("../carpet/map_1d_array"),a=t("../carpet/makepath"),o=t("../../components/drawing"),s=t("../../lib"),l=t("../contour/make_crossings"),c=t("../contour/find_all_paths"),u=t("../contour/plot"),f=t("../contour/constants"),h=t("../contour/convert_to_constraints"),p=t("../contour/empty_pathinfo"),d=t("../contour/close_boundaries"),g=t("../carpet/lookup_carpetid"),m=t("../carpet/axis_aligned_line");function v(t,e,r){var n=t.getPointAtLength(e),i=t.getPointAtLength(r),a=i.x-n.x,o=i.y-n.y,s=Math.sqrt(a*a+o*o);return[a/s,o/s]}function y(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]);return[t[0]/e,t[1]/e]}function x(t,e){var r=Math.abs(t[0]*e[0]+t[1]*e[1]);return Math.sqrt(1-r*r)/r}e.exports=function(t,e,r,b){var _=e.xaxis,w=e.yaxis;s.makeTraceGroups(b,r,"contour").each((function(r){var b=n.select(this),T=r[0],k=T.trace,M=k._carpetTrace=g(t,k),A=t.calcdata[M.index][0];if(M.visible&&"legendonly"!==M.visible){var S=T.a,E=T.b,C=k.contours,L=p(C,e,T),I="constraint"===C.type,P=C._operation,z=I?"="===P?"lines":"fill":C.coloring,O=[[S[0],E[E.length-1]],[S[S.length-1],E[E.length-1]],[S[S.length-1],E[0]],[S[0],E[0]]];l(L);var D=1e-8*(S[S.length-1]-S[0]),R=1e-8*(E[E.length-1]-E[0]);c(L,D,R);var F,B,N,j,U=L;"constraint"===C.type&&(U=h(L,P)),function(t,e){var r,n,i,a,o,s,l,c,u;for(r=0;r=0;j--)F=A.clipsegments[j],B=i([],F.x,_.c2p),N=i([],F.y,w.c2p),B.reverse(),N.reverse(),V.push(a(B,N,F.bicubic));var q="M"+V.join("L")+"Z";!function(t,e,r,n,o,l){var c,u,f,h,p=s.ensureSingle(t,"g","contourbg").selectAll("path").data("fill"!==l||o?[]:[0]);p.enter().append("path"),p.exit().remove();var d=[];for(h=0;h<e.length;h++)c=e[h],u=i([],c.x,r.c2p),f=i([],c.y,n.c2p),d.push(a(u,f,c.bicubic));p.attr("d","M"+d.join("L")+"Z").style("stroke","none")}(b,A.clipsegments,_,w,I,z),function(t,e,r,i,a,l,c,u,f,h,p){var g="fill"===h;g&&d(a,t.contours);var v=s.ensureSingle(e,"g","contourfill").selectAll("path").data(g?a:[]);v.enter().append("path"),v.exit().remove(),v.each((function(t){var e=(t.prefixBoundary?p:"")+function(t,e,r,n,i,a,l,c){var u,f,h,p,d,g,v,y="",x=e.edgepaths.map((function(t,e){return e})),b=!0,_=1e-4*Math.abs(r[0][0]-r[2][0]),w=1e-4*Math.abs(r[0][1]-r[2][1]);function T(t){return Math.abs(t[1]-r[0][1])<w}function k(t){return Math.abs(t[1]-r[2][1])<w}function M(t){return Math.abs(t[0]-r[0][0])<_}function A(t){return Math.abs(t[0]-r[2][0])<_}function S(t,e){var r,n,o,s,u="";for(T(t)&&!A(t)||k(t)&&!M(t)?(s=i.aaxis,o=m(i,a,[t[0],e[0]],.5*(t[1]+e[1]))):(s=i.baxis,o=m(i,a,.5*(t[0]+e[0]),[t[1],e[1]])),r=1;r<o.length;r++)for(u+=s.smoothing?"C":"L",n=0;n<o[r].length;n++){var f=o[r][n];u+=[l.c2p(f[0]),c.c2p(f[1])]+" "}return u}u=0,f=null;for(;x.length;){var E=e.edgepaths[u][0];for(f&&(y+=S(f,E)),v=o.smoothopen(e.edgepaths[u].map(n),e.smoothing),y+=b?v:v.replace(/^M/,"L"),x.splice(x.indexOf(u),1),f=e.edgepaths[u][e.edgepaths[u].length-1],d=-1,p=0;p<4;p++){if(!f){s.log("Missing end?",u,e);break}for(T(f)&&!A(f)?h=r[1]:M(f)?h=r[0]:k(f)?h=r[3]:A(f)&&(h=r[2]),g=0;g<e.edgepaths.length;g++){var C=e.edgepaths[g][0];Math.abs(f[0]-h[0])<_?Math.abs(f[0]-C[0])<_&&(C[1]-f[1])*(h[1]-C[1])>=0&&(h=C,d=g):Math.abs(f[1]-h[1])=0&&(h=C,d=g):s.log("endpt to newendpt is not vert. or horz.",f,h,C)}if(d>=0)break;y+=S(f,h),f=h}if(d===e.edgepaths.length){s.log("unclosed perimeter path");break}u=d,(b=-1===x.indexOf(u))&&(u=x[0],y+=S(f,h)+"Z",f=null)}for(u=0;um&&(n.max=m);n.len=n.max-n.min}(this,r,t,n,c,e.height),!(n.len<(e.width+e.height)*f.LABELMIN)))for(var i=Math.min(Math.ceil(n.len/P),f.LABELMAX),a=0;a0?+p[u]:0),f.push({type:"Feature",geometry:{type:"Point",coordinates:v},properties:y})}}var b=o.extractOpts(e),_=b.reversescale?o.flipScale(b.colorscale):b.colorscale,w=_[0][1],T=["interpolate",["linear"],["heatmap-density"],0,a.opacity(w)<1?w:a.addOpacity(w,0)];for(u=1;u<_.length;u++)T.push(_[u][0],_[u][1]);var k=["interpolate",["linear"],["get","z"],b.min,0,b.max,1];return i.extendFlat(c.heatmap.paint,{"heatmap-weight":d?k:1/(b.max-b.min),"heatmap-color":T,"heatmap-radius":g?{type:"identity",property:"r"}:e.radius,"heatmap-opacity":e.opacity}),c.geojson={type:"FeatureCollection",features:f},c.heatmap.layout.visibility="visible",c}},{"../../components/color":643,"../../components/colorscale":655,"../../constants/numerical":753,"../../lib":778,"../../lib/geojson_utils":772,"fast-isnumeric":241}],1038:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/colorscale/defaults"),a=t("./attributes");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s("lon")||[],c=s("lat")||[],u=Math.min(l.length,c.length);u?(e._length=u,s("z"),s("radius"),s("below"),s("text"),s("hovertext"),s("hovertemplate"),i(t,e,o,s,{prefix:"",cLetter:"z"})):e.visible=!1}},{"../../components/colorscale/defaults":653,"../../lib":778,"./attributes":1035}],1039:[function(t,e,r){"use strict";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.z=e.z,t}},{}],1040:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../plots/cartesian/axes"),a=t("../scattermapbox/hover");e.exports=function(t,e,r){var o=a(t,e,r);if(o){var s=o[0],l=s.cd,c=l[0].trace,u=l[s.index];if(delete s.color,"z"in u){var f=s.subplot.mockAxis;s.z=u.z,s.zLabel=i.tickText(f,f.c2l(u.z),"hover").text}return s.extraText=function(t,e,r){if(t.hovertemplate)return;var i=(e.hi||t.hoverinfo).split("+"),a=-1!==i.indexOf("all"),o=-1!==i.indexOf("lon"),s=-1!==i.indexOf("lat"),l=e.lonlat,c=[];function u(t){return t+"\xb0"}a||o&&s?c.push("("+u(l[0])+", "+u(l[1])+")"):o?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(a||-1!==i.indexOf("text"))&&n.fillText(e,t,c);return c.join("
")}(c,u,l[0].t.labels),[s]}}},{"../../lib":778,"../../plots/cartesian/axes":828,"../scattermapbox/hover":1257}],1041:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../heatmap/colorbar"),formatLabels:t("../scattermapbox/format_labels"),calc:t("./calc"),plot:t("./plot"),hoverPoints:t("./hover"),eventData:t("./event_data"),getBelow:function(t,e){for(var r=e.getMapLayers(),n=0;n<r.length;n++){var i=r[n],a=i.id;if("symbol"===i.type&&"string"==typeof a&&-1===a.indexOf("plotly-"))return a}},moduleType:"trace",name:"densitymapbox",basePlotModule:t("../../plots/mapbox"),categories:["mapbox","gl","showLegend"],meta:{hr_name:"density_mapbox"}}},{"../../plots/mapbox":885,"../heatmap/colorbar":1068,"../scattermapbox/format_labels":1256,"./attributes":1035,"./calc":1036,"./defaults":1038,"./event_data":1039,"./hover":1040,"./plot":1042}],1042:[function(t,e,r){"use strict";var n=t("./convert"),i=t("../../plots/mapbox/constants").traceLayerPrefix;function a(t,e){this.type="densitymapbox",this.subplot=t,this.uid=e,this.sourceId="source-"+e,this.layerList=[["heatmap",i+e+"-heatmap"]],this.below=null}var o=a.prototype;o.update=function(t){var e=this.subplot,r=this.layerList,i=n(t),a=e.belowLookup["trace-"+this.uid];e.map.getSource(this.sourceId).setData(i.geojson),a!==this.below&&(this._removeLayers(),this._addLayers(i,a),this.below=a);for(var o=0;o<r.length;o++){var s=r[o],l=s[0],c=s[1],u=i[l];e.setOptions(c,"setLayoutProperty",u.layout),"visible"===u.layout.visibility&&e.setOptions(c,"setPaintProperty",u.paint)}},o._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,i=this.sourceId,a=0;a<n.length;a++){var o=n[a],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:i,layout:l.layout,paint:l.paint},e)}},o._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},o.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new a(t,r.uid),o=i.sourceId,s=n(e),l=i.below=t.belowLookup["trace-"+r.uid];return t.map.addSource(o,{type:"geojson",data:s.geojson}),i._addLayers(s,l),i}},{"../../plots/mapbox/constants":883,"./convert":1037}],1043:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;r"),s.color=function(t,e){var r=t.marker,i=e.mc||r.color,a=e.mlc||r.line.color,o=e.mlw||r.line.width;if(n(i))return i;if(n(a)&&o)return a}(c,f),[s]}}},{"../../components/color":643,"../../lib":778,"../bar/hover":928}],1051:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style").style,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("../bar/select"),moduleType:"trace",name:"funnel",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../bar/select":933,"./attributes":1044,"./calc":1045,"./cross_trace_calc":1047,"./defaults":1048,"./event_data":1049,"./hover":1050,"./layout_attributes":1052,"./layout_defaults":1053,"./plot":1054,"./style":1055}],1052:[function(t,e,r){"use strict";e.exports={funnelmode:{valType:"enumerated",values:["stack","group","overlay"],dflt:"stack",editType:"calc"},funnelgap:{valType:"number",min:0,max:1,editType:"calc"},funnelgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],1053:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s path").each((function(t){if(!t.isBlank){var e=s.marker;n.select(this).call(a.fill,t.mc||e.color).call(a.stroke,t.mlc||e.line.color).call(i.dashLine,e.line.dash,t.mlw||e.line.width).style("opacity",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(".regions").each((function(){n.select(this).selectAll("path").style("stroke-width",0).call(a.fill,s.connector.fillcolor)})),r.selectAll(".lines").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll("path"),t.width,t.color,t.dash)}))}))}}},{"../../components/color":643,"../../components/drawing":665,"../../constants/interactions":752,"../bar/style":935,"../bar/uniform_text":937,d3:169}],1056:[function(t,e,r){"use strict";var n=t("../pie/attributes"),i=t("../../plots/attributes"),a=t("../../plots/domain").attributes,o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../plots/template_attributes").texttemplateAttrs,l=t("../../lib/extend").extendFlat;e.exports={labels:n.labels,label0:n.label0,dlabel:n.dlabel,values:n.values,marker:{colors:n.marker.colors,line:{color:l({},n.marker.line.color,{dflt:null}),width:l({},n.marker.line.width,{dflt:1}),editType:"calc"},editType:"calc"},text:n.text,hovertext:n.hovertext,scalegroup:l({},n.scalegroup,{}),textinfo:l({},n.textinfo,{flags:["label","text","value","percent"]}),texttemplate:s({editType:"plot"},{keys:["label","color","value","text","percent"]}),hoverinfo:l({},i.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:o({},{keys:["label","color","value","text","percent"]}),textposition:l({},n.textposition,{values:["inside","none"],dflt:"inside"}),textfont:n.textfont,insidetextfont:n.insidetextfont,title:{text:n.title.text,font:n.title.font,position:l({},n.title.position,{values:["top left","top center","top right"],dflt:"top center"}),editType:"plot"},domain:a({name:"funnelarea",trace:!0,editType:"calc"}),aspectratio:{valType:"number",min:0,dflt:1,editType:"plot"},baseratio:{valType:"number",min:0,max:1,dflt:.333,editType:"plot"}}},{"../../lib/extend":768,"../../plots/attributes":824,"../../plots/domain":855,"../../plots/template_attributes":906,"../pie/attributes":1161}],1057:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="funnelarea",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":891}],1058:[function(t,e,r){"use strict";var n=t("../pie/calc");e.exports={calc:function(t,e){return n.calc(t,e)},crossTraceCalc:function(t){n.crossTraceCalc(t,{type:"funnelarea"})}}},{"../pie/calc":1163}],1059:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../plots/domain").defaults,o=t("../bar/defaults").handleText,s=t("../pie/defaults").handleLabelsAndValues;e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,i,r,a)}var u=c("labels"),f=c("values"),h=s(u,f),p=h.len;if(e._hasLabels=h.hasLabels,e._hasValues=h.hasValues,!e._hasLabels&&e._hasValues&&(c("label0"),c("dlabel")),p){e._length=p,c("marker.line.width")&&c("marker.line.color",l.paper_bgcolor),c("marker.colors"),c("scalegroup");var d,g=c("text"),m=c("texttemplate");if(m||(d=c("textinfo",Array.isArray(g)?"text+percent":"percent")),c("hovertext"),c("hovertemplate"),m||d&&"none"!==d){var v=c("textposition");o(t,e,l,c,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}a(e,l,c),c("title.text")&&(c("title.position"),n.coerceFont(c,"title.font",l.font)),c("aspectratio"),c("baseratio")}else e.visible=!1}},{"../../lib":778,"../../plots/domain":855,"../bar/defaults":925,"../pie/defaults":1164,"./attributes":1056}],1060:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"funnelarea",basePlotModule:t("./base_plot"),categories:["pie-like","funnelarea","showLegend"],attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),style:t("./style"),styleOne:t("../pie/style_one"),meta:{}}},{"../pie/style_one":1172,"./attributes":1056,"./base_plot":1057,"./calc":1058,"./defaults":1059,"./layout_attributes":1061,"./layout_defaults":1062,"./plot":1063,"./style":1064}],1061:[function(t,e,r){"use strict";var n=t("../pie/layout_attributes").hiddenlabels;e.exports={hiddenlabels:n,funnelareacolorway:{valType:"colorlist",editType:"calc"},extendfunnelareacolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{"../pie/layout_attributes":1168}],1062:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("hiddenlabels"),r("funnelareacolorway",e.colorway),r("extendfunnelareacolors")}},{"../../lib":778,"./layout_attributes":1061}],1063:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/drawing"),a=t("../../lib"),o=a.strScale,s=a.strTranslate,l=t("../../lib/svg_text_utils"),c=t("../bar/plot").toMoveInsideBar,u=t("../bar/uniform_text"),f=u.recordMinTextSize,h=u.clearMinTextSize,p=t("../pie/helpers"),d=t("../pie/plot"),g=d.attachFxHandlers,m=d.determineInsideTextFont,v=d.layoutAreas,y=d.prerenderTitles,x=d.positionTitleOutside,b=d.formatSliceLabel;function _(t,e){return"l"+(e[0]-t[0])+","+(e[1]-t[1])}e.exports=function(t,e){var r=t._fullLayout;h("funnelarea",r),y(e,t),v(e,r._size),a.makeTraceGroups(r._funnelarealayer,e,"trace").each((function(e){var u=n.select(this),h=e[0],d=h.trace;!function(t){if(!t.length)return;var e=t[0],r=e.trace,n=r.aspectratio,i=r.baseratio;i>.999&&(i=.999);var a,o=Math.pow(i,2),s=e.vTotal,l=s,c=s*o/(1-o)/s;function u(){var t,e={x:t=Math.sqrt(c),y:-t};return[e.x,e.y]}var f,h,p=[];for(p.push(u()),f=t.length-1;f>-1;f--)if(!(h=t[f]).hidden){var d=h.v/l;c+=d,p.push(u())}var g=1/0,m=-1/0;for(f=0;f-1;f--)if(!(h=t[f]).hidden){var M=p[k+=1][0],A=p[k][1];h.TL=[-M,A],h.TR=[M,A],h.BL=w,h.BR=T,h.pxmid=(S=h.TR,E=h.BR,[.5*(S[0]+E[0]),.5*(S[1]+E[1])]),w=h.TL,T=h.TR}var S,E}(e),u.each((function(){var u=n.select(this).selectAll("g.slice").data(e);u.enter().append("g").classed("slice",!0),u.exit().remove(),u.each((function(o,s){if(o.hidden)n.select(this).selectAll("path,g").remove();else{o.pointNumber=o.i,o.curveNumber=d.index;var u=h.cx,v=h.cy,y=n.select(this),x=y.selectAll("path.surface").data([o]);x.enter().append("path").classed("surface",!0).style({"pointer-events":"all"}),y.call(g,t,e);var w="M"+(u+o.TR[0])+","+(v+o.TR[1])+_(o.TR,o.BR)+_(o.BR,o.BL)+_(o.BL,o.TL)+"Z";x.attr("d",w),b(t,o,h);var T=p.castOption(d.textposition,o.pts),k=y.selectAll("g.slicetext").data(o.text&&"none"!==T?[0]:[]);k.enter().append("g").classed("slicetext",!0),k.exit().remove(),k.each((function(){var h=a.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),p=a.ensureUniformFontSize(t,m(d,o,r.font));h.text(o.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(i.font,p).call(l.convertToTspans,t);var g,y,x,b=i.bBox(h.node()),_=Math.min(o.BL[1],o.BR[1])+v,w=Math.max(o.TL[1],o.TR[1])+v;y=Math.max(o.TL[0],o.BL[0])+u,x=Math.min(o.TR[0],o.BR[0])+u,(g=c(y,x,_,w,b,{isHorizontal:!0,constrained:!0,angle:0,anchor:"middle"})).fontSize=p.size,f(d.type,g,r),e[s].transform=g,h.attr("transform",a.getTextTransform(g))}))}}));var v=n.select(this).selectAll("g.titletext").data(d.title.text?[0]:[]);v.enter().append("g").classed("titletext",!0),v.exit().remove(),v.each((function(){var e=a.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),c=d.title.text;d._meta&&(c=a.templateString(c,d._meta)),e.text(c).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(i.font,d.title.font).call(l.convertToTspans,t);var u=x(h,r._size);e.attr("transform",s(u.x,u.y)+o(Math.min(1,u.scale))+s(u.tx,u.ty))}))}))}))}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../bar/plot":932,"../bar/uniform_text":937,"../pie/helpers":1166,"../pie/plot":1170,d3:169}],1064:[function(t,e,r){"use strict";var n=t("d3"),i=t("../pie/style_one"),a=t("../bar/uniform_text").resizeText;e.exports=function(t){var e=t._fullLayout._funnelarealayer.selectAll(".trace");a(t,e,"funnelarea"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll("path.surface").each((function(t){n.select(this).call(i,t,e)}))}))}},{"../bar/uniform_text":937,"../pie/style_one":1172,d3:169}],1065:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../plots/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../components/colorscale/attributes"),s=(t("../../constants/docs").FORMAT_LINK,t("../../lib/extend").extendFlat);e.exports=s({z:{valType:"data_array",editType:"calc"},x:s({},n.x,{impliedEdits:{xtype:"array"}}),x0:s({},n.x0,{impliedEdits:{xtype:"scaled"}}),dx:s({},n.dx,{impliedEdits:{xtype:"scaled"}}),y:s({},n.y,{impliedEdits:{ytype:"array"}}),y0:s({},n.y0,{impliedEdits:{ytype:"scaled"}}),dy:s({},n.dy,{impliedEdits:{ytype:"scaled"}}),xperiod:s({},n.xperiod,{impliedEdits:{xtype:"scaled"}}),yperiod:s({},n.yperiod,{impliedEdits:{ytype:"scaled"}}),xperiod0:s({},n.xperiod0,{impliedEdits:{xtype:"scaled"}}),yperiod0:s({},n.yperiod0,{impliedEdits:{ytype:"scaled"}}),xperiodalignment:s({},n.xperiodalignment,{impliedEdits:{xtype:"scaled"}}),yperiodalignment:s({},n.yperiodalignment,{impliedEdits:{ytype:"scaled"}}),text:{valType:"data_array",editType:"calc"},hovertext:{valType:"data_array",editType:"calc"},transpose:{valType:"boolean",dflt:!1,editType:"calc"},xtype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},ytype:{valType:"enumerated",values:["array","scaled"],editType:"calc+clearAxisTypes"},zsmooth:{valType:"enumerated",values:["fast","best",!1],dflt:!1,editType:"calc"},hoverongaps:{valType:"boolean",dflt:!0,editType:"none"},connectgaps:{valType:"boolean",editType:"calc"},xgap:{valType:"number",dflt:0,min:0,editType:"plot"},ygap:{valType:"number",dflt:0,min:0,editType:"plot"},zhoverformat:{valType:"string",dflt:"",editType:"none"},hovertemplate:a(),showlegend:s({},i.showlegend,{dflt:!1})},{transforms:void 0},o("",{cLetter:"z",autoColorDflt:!1}))},{"../../components/colorscale/attributes":650,"../../constants/docs":748,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scatter/attributes":1187}],1066:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../plots/cartesian/align_period"),s=t("../histogram2d/calc"),l=t("../../components/colorscale/calc"),c=t("./convert_column_xyz"),u=t("./clean_2d_array"),f=t("./interp2d"),h=t("./find_empties"),p=t("./make_bound_array"),d=t("../../constants/numerical").BADNUM;function g(t){for(var e=[],r=t.length,n=0;nD){z("x scale is not linear");break}}if(x.length&&"fast"===I){var R=(x[x.length-1]-x[0])/(x.length-1),F=Math.abs(R/100);for(k=0;kF){z("y scale is not linear");break}}}var B=i.maxRowLength(T),N="scaled"===e.xtype?"":r,j=p(e,N,m,v,B,A),U="scaled"===e.ytype?"":x,V=p(e,U,b,_,T.length,S);L||(e._extremes[A._id]=a.findExtremes(A,j),e._extremes[S._id]=a.findExtremes(S,V));var q={x:j,y:V,z:T,text:e._text||e.text,hovertext:e._hovertext||e.hovertext};if(e.xperiodalignment&&y&&(q.orig_x=y),e.yperiodalignment&&w&&(q.orig_y=w),N&&N.length===j.length-1&&(q.xCenter=N),U&&U.length===V.length-1&&(q.yCenter=U),C&&(q.xRanges=M.xRanges,q.yRanges=M.yRanges,q.pts=M.pts),E||l(t,e,{vals:T,cLetter:"z"}),E&&e.contours&&"heatmap"===e.contours.coloring){var H={type:"contour"===e.type?"heatmap":"histogram2d",xcalendar:e.xcalendar,ycalendar:e.ycalendar};q.xfill=p(H,N,m,v,B,A),q.yfill=p(H,U,b,_,T.length,S)}return[q]}},{"../../components/colorscale/calc":651,"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/align_period":825,"../../plots/cartesian/axes":828,"../../registry":911,"../histogram2d/calc":1098,"./clean_2d_array":1067,"./convert_column_xyz":1069,"./find_empties":1071,"./interp2d":1074,"./make_bound_array":1075}],1067:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../constants/numerical").BADNUM;e.exports=function(t,e,r,o){var s,l,c,u,f,h;function p(t){if(n(t))return+t}if(e&&e.transpose){for(s=0,f=0;f=0;o--)(s=((f[[(r=(a=h[o])[0])-1,i=a[1]]]||g)[2]+(f[[r+1,i]]||g)[2]+(f[[r,i-1]]||g)[2]+(f[[r,i+1]]||g)[2])/20)&&(l[a]=[r,i,s],h.splice(o,1),c=!0);if(!c)throw"findEmpties iterated with no new neighbors";for(a in l)f[a]=l[a],u.push(l[a])}return u.sort((function(t,e){return e[2]-t[2]}))}},{"../../lib":778}],1072:[function(t,e,r){"use strict";var n=t("../../components/fx"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../components/colorscale").extractOpts;e.exports=function(t,e,r,s,l,c){var u,f,h,p,d=t.cd[0],g=d.trace,m=t.xa,v=t.ya,y=d.x,x=d.y,b=d.z,_=d.xCenter,w=d.yCenter,T=d.zmask,k=g.zhoverformat,M=y,A=x;if(!1!==t.index){try{h=Math.round(t.index[1]),p=Math.round(t.index[0])}catch(e){return void i.error("Error hovering on heatmap, pointNumber must be [row,col], found:",t.index)}if(h<0||h>=b[0].length||p<0||p>b.length)return}else{if(n.inbox(e-y[0],e-y[y.length-1],0)>0||n.inbox(r-x[0],r-x[x.length-1],0)>0)return;if(c){var S;for(M=[2*y[0]-y[1]],S=1;Sg&&(v=Math.max(v,Math.abs(t[a][o]-d)/(m-g))))}return v}e.exports=function(t,e){var r,i=1;for(o(t,e),r=0;r.01;r++)i=o(t,e,a(i));return i>.01&&n.log("interp2d didn't converge quickly",i),t}},{"../../lib":778}],1075:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib").isArrayOrTypedArray;e.exports=function(t,e,r,a,o,s){var l,c,u,f=[],h=n.traceIs(t,"contour"),p=n.traceIs(t,"histogram"),d=n.traceIs(t,"gl2d");if(i(e)&&e.length>1&&!p&&"category"!==s.type){var g=e.length;if(!(g<=o))return h?e.slice(0,o):e.slice(0,o+1);if(h||d)f=e.slice(0,o);else if(1===o)f=[e[0]-.5,e[0]+.5];else{for(f=[1.5*e[0]-.5*e[1]],u=1;u0;)h=p.c2p(T[y]),y--;for(h0;)v=d.c2p(k[y]),y--;if(v0&&(a=!0);for(var l=0;la){var o=a-r[t];return r[t]=a,o}}return 0},max:function(t,e,r,i){var a=i[e];if(n(a)){if(a=Number(a),!n(r[t]))return r[t]=a,a;if(r[t]c?t>o?t>1.1*i?i:t>1.1*a?a:o:t>s?s:t>l?l:c:Math.pow(10,Math.floor(Math.log(t)/Math.LN10))}function p(t,e,r,n,a,s){if(n&&t>o){var l=d(e,a,s),c=d(r,a,s),u=t===i?0:1;return l[u]!==c[u]}return Math.floor(r/t)-Math.floor(e/t)>.1}function d(t,e,r){var n=e.c2d(t,i,r).split("-");return""===n[0]&&(n.unshift(),n[0]="-"+n[0]),n}e.exports=function(t,e,r,n,a){var s,l,c=-1.1*e,h=-.1*e,p=t-h,d=r[0],g=r[1],m=Math.min(f(d+h,d+p,n,a),f(g+h,g+p,n,a)),v=Math.min(f(d+c,d+h,n,a),f(g+c,g+h,n,a));if(m>v&&vo){var y=s===i?1:6,x=s===i?"M12":"M1";return function(e,r){var o=n.c2d(e,i,a),s=o.indexOf("-",y);s>0&&(o=o.substr(0,s));var c=n.d2c(o,0,a);if(cr.r2l(B)&&(j=o.tickIncrement(j,b.size,!0,p)),O.start=r.l2r(j),F||i.nestedProperty(e,v+".start").set(O.start)}var U=b.end,V=r.r2l(z.end),q=void 0!==V;if((b.endFound||q)&&V!==r.r2l(U)){var H=q?V:i.aggNums(Math.max,null,d);O.end=r.l2r(H),q||i.nestedProperty(e,v+".start").set(O.end)}var G="autobin"+s;return!1===e._input[G]&&(e._input[v]=i.extendFlat({},e[v]||{}),delete e._input[G],delete e[G]),[O,d]}e.exports={calc:function(t,e){var r,a,p,d,g=[],m=[],v=o.getFromId(t,"h"===e.orientation?e.yaxis:e.xaxis),y="h"===e.orientation?"y":"x",x={x:"y",y:"x"}[y],b=e[y+"calendar"],_=e.cumulative,w=h(t,e,v,y),T=w[0],k=w[1],M="string"==typeof T.size,A=[],S=M?A:T,E=[],C=[],L=[],I=0,P=e.histnorm,z=e.histfunc,O=-1!==P.indexOf("density");_.enabled&&O&&(P=P.replace(/ ?density$/,""),O=!1);var D,R="max"===z||"min"===z?null:0,F=l.count,B=c[P],N=!1,j=function(t){return v.r2c(t,0,b)};for(i.isArrayOrTypedArray(e[x])&&"count"!==z&&(D=e[x],N="avg"===z,F=l[z]),r=j(T.start),p=j(T.end)+(r-o.tickIncrement(r,T.size,!1,b))/1e6;r=0&&d=0;n--)s(n);else if("increasing"===e){for(n=1;n=0;n--)t[n]+=t[n+1];"exclude"===r&&(t.push(0),t.shift())}}(m,_.direction,_.currentbin);var J=Math.min(g.length,m.length),K=[],Q=0,$=J-1;for(r=0;r=Q;r--)if(m[r]){$=r;break}for(r=Q;r<=$;r++)if(n(g[r])&&n(m[r])){var tt={p:g[r],s:m[r],b:0};_.enabled||(tt.pts=L[r],G?tt.ph0=tt.ph1=L[r].length?k[L[r][0]]:g[r]:(e._computePh=!0,tt.ph0=q(A[r]),tt.ph1=q(A[r+1],!0))),K.push(tt)}return 1===K.length&&(K[0].width1=o.tickIncrement(K[0].p,T.size,!1,b)-K[0].p),s(K,e),i.isArrayOrTypedArray(e.selectedpoints)&&i.tagSelected(K,e,X),K},calcAllAutoBins:h}},{"../../lib":778,"../../plots/cartesian/axes":828,"../../registry":911,"../bar/arrays_to_calcdata":920,"./average":1085,"./bin_functions":1087,"./bin_label_vals":1088,"./norm_functions":1096,"fast-isnumeric":241}],1090:[function(t,e,r){"use strict";e.exports={eventDataKeys:["binNumber"]}},{}],1091:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../plots/cartesian/axis_ids"),a=t("../../registry").traceIs,o=t("../bar/defaults").handleGroupingDefaults,s=n.nestedProperty,l=t("../../plots/cartesian/constraints").getAxisGroup,c=[{aStr:{x:"xbins.start",y:"ybins.start"},name:"start"},{aStr:{x:"xbins.end",y:"ybins.end"},name:"end"},{aStr:{x:"xbins.size",y:"ybins.size"},name:"size"},{aStr:{x:"nbinsx",y:"nbinsy"},name:"nbins"}],u=["x","y"];e.exports=function(t,e){var r,f,h,p,d,g,m,v=e._histogramBinOpts={},y=[],x={},b=[];function _(t,e){return n.coerce(r._input,r,r._module.attributes,t,e)}function w(t){return"v"===t.orientation?"x":"y"}function T(t,r,a){var o=t.uid+"__"+a;r||(r=o);var s=function(t,r){return i.getFromTrace({_fullLayout:e},t,r).type}(t,a),l=t[a+"calendar"]||"",c=v[r],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(t),c.dirs.push(a)):(r=o,s!==c.axType&&n.warn(["Attempted to group the bins of trace",t.index,"set on a","type:"+s,"axis","with bins on","type:"+c.axType,"axis."].join(" ")),l!==c.calendar&&n.warn(["Attempted to group the bins of trace",t.index,"set with a",l,"calendar","with bins",c.calendar?"on a "+c.calendar+" calendar":"w/o a set calendar"].join(" ")))),u&&(v[r]={traces:[t],dirs:[a],axType:s,calendar:t[a+"calendar"]||""}),t["_"+a+"bingroup"]=r}for(d=0;dS&&T.splice(S,T.length-S),A.length>S&&A.splice(S,A.length-S);var E=[],C=[],L=[],I="string"==typeof w.size,P="string"==typeof M.size,z=[],O=[],D=I?z:w,R=P?O:M,F=0,B=[],N=[],j=e.histnorm,U=e.histfunc,V=-1!==j.indexOf("density"),q="max"===U||"min"===U?null:0,H=a.count,G=o[j],Y=!1,W=[],X=[],Z="z"in e?e.z:"marker"in e&&Array.isArray(e.marker.color)?e.marker.color:"";Z&&"count"!==U&&(Y="avg"===U,H=a[U]);var J=w.size,K=x(w.start),Q=x(w.end)+(K-i.tickIncrement(K,J,!1,v))/1e6;for(r=K;r=0&&p=0&&d<st&&(F+=H(p,r,E[d],Z,B[d]),N[d][p].push(r),ut&&(void 0===ht[p]?ht[p]=yt:ht[p]!==yt&&(ut=!1)),ft&&(void 0===pt[d]?pt[d]=xt:pt[d]!==xt&&(ft=!1)),dt=Math.min(dt,yt-z[p]),gt=Math.min(gt,z[p+1]-yt),mt=Math.min(mt,xt-O[d]),vt=Math.min(vt,O[d+1]-xt))}if(Y)for(d=0;d<st;d++)F+=s(E[d],B[d]);if(G)for(d=0;d<st;d++)G(E[d],F,W,X[d]);return{x:T,xRanges:h(z,ut&&ht,dt,gt,g,v),x0:rt,dx:et,y:A,yRanges:h(O,ft&&pt,mt,vt,m,y),y0:ct,dy:lt,z:E,pts:N}}},{"../../lib":778,"../../plots/cartesian/axes":828,"../histogram/average":1085,"../histogram/bin_functions":1087,"../histogram/bin_label_vals":1088,"../histogram/calc":1089,"../histogram/norm_functions":1096}],1099:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./sample_defaults"),a=t("../heatmap/style_defaults"),o=t("../../components/colorscale/defaults"),s=t("./attributes");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}i(t,e,c,l),!1!==e.visible&&(a(t,e,c,l),o(t,e,l,c,{prefix:"",cLetter:"z"}),c("hovertemplate"))}},{"../../components/colorscale/defaults":653,"../../lib":778,"../heatmap/style_defaults":1078,"./attributes":1097,"./sample_defaults":1102}],1100:[function(t,e,r){"use strict";var n=t("../heatmap/hover"),i=t("../../plots/cartesian/axes").hoverLabelText;e.exports=function(t,e,r,a,o,s){var l=n(t,e,r,a,o,s);if(l){var c=(t=l[0]).index,u=c[0],f=c[1],h=t.cd[0],p=h.xRanges[f],d=h.yRanges[u];return t.xLabel=i(t.xa,p[0],p[1]),t.yLabel=i(t.ya,d[0],d[1]),l}}},{"../../plots/cartesian/axes":828,"../heatmap/hover":1072}],1101:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("../histogram/cross_trace_defaults"),calc:t("../heatmap/calc"),plot:t("../heatmap/plot"),layerName:"heatmaplayer",colorbar:t("../heatmap/colorbar"),style:t("../heatmap/style"),hoverPoints:t("./hover"),eventData:t("../histogram/event_data"),moduleType:"trace",name:"histogram2d",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","2dMap","histogram","showLegend"],meta:{}}},{"../../plots/cartesian":841,"../heatmap/calc":1066,"../heatmap/colorbar":1068,"../heatmap/plot":1076,"../heatmap/style":1077,"../histogram/cross_trace_defaults":1091,"../histogram/event_data":1093,"./attributes":1097,"./defaults":1099,"./hover":1100}],1102:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib");e.exports=function(t,e,r,a){var o=r("x"),s=r("y"),l=i.minRowLength(o),c=i.minRowLength(s);l&&c?(e._length=Math.min(l,c),n.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y"],a),(r("z")||r("marker.color"))&&r("histfunc"),r("histnorm"),r("autobinx"),r("autobiny")):e.visible=!1}},{"../../lib":778,"../../registry":911}],1103:[function(t,e,r){"use strict";var n=t("../histogram2d/attributes"),i=t("../contour/attributes"),a=t("../../components/colorscale/attributes"),o=t("../../lib/extend").extendFlat;e.exports=o({x:n.x,y:n.y,z:n.z,marker:n.marker,histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:n.xbins,nbinsy:n.nbinsy,ybins:n.ybins,autobinx:n.autobinx,autobiny:n.autobiny,bingroup:n.bingroup,xbingroup:n.xbingroup,ybingroup:n.ybingroup,autocontour:i.autocontour,ncontours:i.ncontours,contours:i.contours,line:{color:i.line.color,width:o({},i.line.width,{dflt:.5}),dash:i.line.dash,smoothing:i.line.smoothing,editType:"plot"},zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate},a("",{cLetter:"z",editTypeOverride:"calc"}))},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../contour/attributes":1008,"../histogram2d/attributes":1097}],1104:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../histogram2d/sample_defaults"),a=t("../contour/contours_defaults"),o=t("../contour/style_defaults"),s=t("./attributes");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}i(t,e,c,l),!1!==e.visible&&(a(t,e,c,(function(r){return n.coerce2(t,e,s,r)})),o(t,e,c,l),c("hovertemplate"))}},{"../../lib":778,"../contour/contours_defaults":1015,"../contour/style_defaults":1029,"../histogram2d/sample_defaults":1102,"./attributes":1103}],1105:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("../histogram/cross_trace_defaults"),calc:t("../contour/calc"),plot:t("../contour/plot").plot,layerName:"contourlayer",style:t("../contour/style"),colorbar:t("../contour/colorbar"),hoverPoints:t("../contour/hover"),moduleType:"trace",name:"histogram2dcontour",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","2dMap","contour","histogram","showLegend"],meta:{}}},{"../../plots/cartesian":841,"../contour/calc":1009,"../contour/colorbar":1011,"../contour/hover":1021,"../contour/plot":1026,"../contour/style":1028,"../histogram/cross_trace_defaults":1091,"./attributes":1103,"./defaults":1104}],1106:[function(t,e,r){"use strict";for(var n=t("../../plots/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../../lib/extend").extendFlat,o=t("./constants").colormodel,s=["rgb","rgba","rgba256","hsl","hsla"],l=[],c=[],u=0;u<s.length;u++){var f=o[s[u]];l.push("For the `"+s[u]+"` colormodel, it is ["+(f.zminDflt||f.min).join(", ")+"]."),c.push("For the `"+s[u]+"` colormodel, it is ["+(f.zmaxDflt||f.max).join(", ")+"].")}e.exports=a({source:{valType:"string",editType:"calc"},z:{valType:"data_array",editType:"calc"},colormodel:{valType:"enumerated",values:s,editType:"calc"},zmin:{valType:"info_array",items:[{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"}],editType:"calc"},zmax:{valType:"info_array",items:[{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"},{valType:"number",editType:"calc"}],editType:"calc"},x0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes"},y0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes"},dx:{valType:"number",dflt:1,editType:"calc"},dy:{valType:"number",dflt:1,editType:"calc"},text:{valType:"data_array",editType:"plot"},hovertext:{valType:"data_array",editType:"plot"},hoverinfo:a({},n.hoverinfo,{flags:["x","y","z","color","name","text"],dflt:"x+y+z+text+name"}),hovertemplate:i({},{keys:["z","color","colormodel"]}),transforms:void 0})},{"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"./constants":1108}],1107:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./constants"),a=t("fast-isnumeric"),o=t("../../plots/cartesian/axes"),s=t("../../lib").maxRowLength,l=t("./helpers").getImageSize;function c(t,e,r,i){return function(a){return n.constrain((a-t)*e,r,i)}}function u(t,e){return function(r){return n.constrain(r,t,e)}}e.exports=function(t,e){var r,n;if(e._hasZ)r=e.z.length,n=s(e.z);else if(e._hasSource){var f=l(e.source);r=f.height,n=f.width}var h,p=o.getFromId(t,e.xaxis||"x"),d=o.getFromId(t,e.yaxis||"y"),g=p.d2c(e.x0)-e.dx/2,m=d.d2c(e.y0)-e.dy/2,v=[g,g+n*e.dx],y=[m,m+r*e.dy];if(p&&"log"===p.type)for(h=0;h0||n.inbox(r-o.y0,r-(o.y0+o.h*s.dy),0)>0)){var u,f=Math.floor((e-o.x0)/s.dx),h=Math.floor(Math.abs(r-o.y0)/s.dy);if(s._hasZ?u=o.z[h][f]:s._hasSource&&(u=s._canvas.el.getContext("2d").getImageData(f,h,1,1).data),u){var p,d=o.hi||s.hoverinfo;if(d){var g=d.split("+");-1!==g.indexOf("all")&&(g=["color"]),-1!==g.indexOf("color")&&(p=!0)}var m,v=a.colormodel[s.colormodel],y=v.colormodel||s.colormodel,x=y.length,b=s._scaler(u),_=v.suffix,w=[];(s.hovertemplate||p)&&(w.push("["+[b[0]+_[0],b[1]+_[1],b[2]+_[2]].join(", ")),4===x&&w.push(", "+b[3]+_[3]),w.push("]"),w=w.join(""),t.extraText=y.toUpperCase()+": "+w),Array.isArray(s.hovertext)&&Array.isArray(s.hovertext[h])?m=s.hovertext[h][f]:Array.isArray(s.text)&&Array.isArray(s.text[h])&&(m=s.text[h][f]);var T=c.c2p(o.y0+(h+.5)*s.dy),k=o.x0+(f+.5)*s.dx,M=o.y0+(h+.5)*s.dy,A="["+u.slice(0,s.colormodel.length).join(", ")+"]";return[i.extendFlat(t,{index:[h,f],x0:l.c2p(o.x0+f*s.dx),x1:l.c2p(o.x0+(f+1)*s.dx),y0:T,y1:T,color:b,xVal:k,xLabelVal:k,yVal:M,yLabelVal:M,zLabelVal:A,text:m,hovertemplateLabels:{zLabel:A,colorLabel:w,"color[0]Label":b[0]+_[0],"color[1]Label":b[1]+_[1],"color[2]Label":b[2]+_[2],"color[3]Label":b[3]+_[3]}})]}}}},{"../../components/fx":683,"../../lib":778,"./constants":1108}],1113:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),style:t("./style"),hoverPoints:t("./hover"),eventData:t("./event_data"),moduleType:"trace",name:"image",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","2dMap","noSortingByValue"],animatable:!1,meta:{}}},{"../../plots/cartesian":841,"./attributes":1106,"./calc":1107,"./defaults":1109,"./event_data":1110,"./hover":1112,"./plot":1114,"./style":1115}],1114:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=i.strTranslate,o=t("../../constants/xmlns_namespaces"),s=t("./constants"),l=i.isIOS()||i.isSafari()||i.isIE();e.exports=function(t,e,r,c){var u=e.xaxis,f=e.yaxis,h=!(l||t._context._exportedPlot);i.makeTraceGroups(c,r,"im").each((function(e){var r=n.select(this),l=e[0],c=l.trace,p=h&&!c._hasZ&&c._hasSource&&"linear"===u.type&&"linear"===f.type;c._fastImage=p;var d,g,m,v,y,x,b=l.z,_=l.x0,w=l.y0,T=l.w,k=l.h,M=c.dx,A=c.dy;for(x=0;void 0===d&&x0;)g=u.c2p(_+x*M),x--;for(x=0;void 0===v&&x0;)y=f.c2p(w+x*A),x--;if(gP[0];if(z||O){var D=d+S/2,R=v+E/2;L+="transform:"+a(D+"px",R+"px")+"scale("+(z?-1:1)+","+(O?-1:1)+")"+a(-D+"px",-R+"px")+";"}}C.attr("style",L);var F=new Promise((function(t){if(c._hasZ)t();else if(c._hasSource)if(c._canvas&&c._canvas.el.width===T&&c._canvas.el.height===k&&c._canvas.source===c.source)t();else{var e=document.createElement("canvas");e.width=T,e.height=k;var r=e.getContext("2d");c._image=c._image||new Image;var n=c._image;n.onload=function(){r.drawImage(n,0,0),c._canvas={el:e,source:c.source},t()},n.setAttribute("src",c.source)}})).then((function(){var t;if(c._hasZ)t=B((function(t,e){return b[e][t]})).toDataURL("image/png");else if(c._hasSource)if(p)t=c.source;else{var e=c._canvas.el.getContext("2d").getImageData(0,0,T,k).data;t=B((function(t,r){var n=4*(r*T+t);return[e[n],e[n+1],e[n+2],e[n+3]]})).toDataURL("image/png")}C.attr({"xlink:href":t,height:E,width:S,x:d,y:v})}));t._promises.push(F)}function B(t){var e=document.createElement("canvas");e.width=S,e.height=E;var r,n=e.getContext("2d"),a=function(t){return i.constrain(Math.round(u.c2p(_+t*M)-d),0,S)},o=function(t){return i.constrain(Math.round(f.c2p(w+t*A)-v),0,E)},h=s.colormodel[c.colormodel],p=h.colormodel||c.colormodel,g=h.fmt;for(x=0;x0}function _(t){t.each((function(t){m.stroke(n.select(this),t.line.color)})).each((function(t){m.fill(n.select(this),t.color)})).style("stroke-width",(function(t){return t.line.width}))}function w(t,e,r){var n=t._fullLayout,a=i.extendFlat({type:"linear",ticks:"outside",range:r,showline:!0},e),o={type:"linear",_id:"x"+e._id},s={letter:"x",font:n.font,noHover:!0,noTickson:!0};function l(t,e){return i.coerce(a,o,g,t,e)}return p(a,o,l,s,n),d(a,o,l,s),o}function T(t,e,r){return[Math.min(e/t.width,r/t.height),t,e+"x"+r]}function k(t,e,r,i){var a=document.createElementNS("http://www.w3.org/2000/svg","text"),o=n.select(a);return o.text(t).attr("x",0).attr("y",0).attr("text-anchor",r).attr("data-unformatted",t).call(f.convertToTspans,i).call(c.font,e),c.bBox(o.node())}function M(t,e,r,n,a,o){var s="_cache"+e;t[s]&&t[s].key===a||(t[s]={key:a,value:r});var l=i.aggNums(o,null,[t[s].value,n],2);return t[s].value=l,l}e.exports=function(t,e,r,p){var d,g=t._fullLayout;b(r)&&p&&(d=p()),i.makeTraceGroups(g._indicatorlayer,e,"trace").each((function(e){var p,A,S,E,C,L=e[0].trace,I=n.select(this),P=L._hasGauge,z=L._isAngular,O=L._isBullet,D=L.domain,R={w:g._size.w*(D.x[1]-D.x[0]),h:g._size.h*(D.y[1]-D.y[0]),l:g._size.l+g._size.w*D.x[0],r:g._size.r+g._size.w*(1-D.x[1]),t:g._size.t+g._size.h*(1-D.y[1]),b:g._size.b+g._size.h*D.y[0]},F=R.l+R.w/2,B=R.t+R.h/2,N=Math.min(R.w/2,R.h),j=u.innerRadius*N,U=L.align||"center";if(A=B,P){if(z&&(p=F,A=B+N/2,S=function(t){return function(t,e){var r=Math.sqrt(t.width/2*(t.width/2)+t.height*t.height);return[e/r,t,e]}(t,.9*j)}),O){var V=u.bulletPadding,q=1-u.bulletNumberDomainSize+V;p=R.l+(q+(1-q)*y[U])*R.w,S=function(t){return T(t,(u.bulletNumberDomainSize-V)*R.w,R.h)}}}else p=R.l+y[U]*R.w,S=function(t){return T(t,R.w,R.h)};!function(t,e,r,s){var l,u,p,d=r[0].trace,g=s.numbersX,_=s.numbersY,T=d.align||"center",A=v[T],S=s.transitionOpts,E=s.onComplete,C=i.ensureSingle(e,"g","numbers"),L=[];d._hasNumber&&L.push("number");d._hasDelta&&(L.push("delta"),"left"===d.delta.position&&L.reverse());var I=C.selectAll("text").data(L);function P(e,r,n,i){if(!e.match("s")||n>=0==i>=0||r(n).slice(-1).match(x)||r(i).slice(-1).match(x))return r;var a=e.slice().replace("s","f").replace(/\d+/,(function(t){return parseInt(t)-1})),o=w(t,{tickformat:a});return function(t){return Math.abs(t)<1?h.tickText(o,t).text:r(t)}}I.enter().append("text"),I.attr("text-anchor",(function(){return A})).attr("class",(function(t){return t})).attr("x",null).attr("y",null).attr("dx",null).attr("dy",null),I.exit().remove();var z,O=d.mode+d.align;d._hasDelta&&(z=function(){var e=w(t,{tickformat:d.delta.valueformat},d._range);e.setScale(),h.prepTicks(e);var i=function(t){return h.tickText(e,t).text},a=function(t){return d.delta.relative?t.relativeDelta:t.delta},o=function(t,e){return 0===t||"number"!=typeof t||isNaN(t)?"-":(t>0?d.delta.increasing.symbol:d.delta.decreasing.symbol)+e(t)},s=function(t){return t.delta>=0?d.delta.increasing.color:d.delta.decreasing.color};void 0===d._deltaLastValue&&(d._deltaLastValue=a(r[0]));var l=C.select("text.delta");function p(){l.text(o(a(r[0]),i)).call(m.fill,s(r[0])).call(f.convertToTspans,t)}return l.call(c.font,d.delta.font).call(m.fill,s({delta:d._deltaLastValue})),b(S)?l.transition().duration(S.duration).ease(S.easing).tween("text",(function(){var t=n.select(this),e=a(r[0]),l=d._deltaLastValue,c=P(d.delta.valueformat,i,l,e),u=n.interpolateNumber(l,e);return d._deltaLastValue=e,function(e){t.text(o(u(e),c)),t.call(m.fill,s({delta:u(e)}))}})).each("end",(function(){p(),E&&E()})).each("interrupt",(function(){p(),E&&E()})):p(),u=k(o(a(r[0]),i),d.delta.font,A,t),l}(),O+=d.delta.position+d.delta.font.size+d.delta.font.family+d.delta.valueformat,O+=d.delta.increasing.symbol+d.delta.decreasing.symbol,p=u);d._hasNumber&&(!function(){var e=w(t,{tickformat:d.number.valueformat},d._range);e.setScale(),h.prepTicks(e);var i=function(t){return h.tickText(e,t).text},a=d.number.suffix,o=d.number.prefix,s=C.select("text.number");function u(){var e="number"==typeof r[0].y?o+i(r[0].y)+a:"-";s.text(e).call(c.font,d.number.font).call(f.convertToTspans,t)}b(S)?s.transition().duration(S.duration).ease(S.easing).each("end",(function(){u(),E&&E()})).each("interrupt",(function(){u(),E&&E()})).attrTween("text",(function(){var t=n.select(this),e=n.interpolateNumber(r[0].lastY,r[0].y);d._lastValue=r[0].y;var s=P(d.number.valueformat,i,r[0].lastY,r[0].y);return function(r){t.text(o+s(e(r))+a)}})):u(),l=k(o+i(r[0].y)+a,d.number.font,A,t)}(),O+=d.number.font.size+d.number.font.family+d.number.valueformat+d.number.suffix+d.number.prefix,p=l);if(d._hasDelta&&d._hasNumber){var D,R,F=[(l.left+l.right)/2,(l.top+l.bottom)/2],B=[(u.left+u.right)/2,(u.top+u.bottom)/2],N=.75*d.delta.font.size;"left"===d.delta.position&&(D=M(d,"deltaPos",0,-1*(l.width*y[d.align]+u.width*(1-y[d.align])+N),O,Math.min),R=F[1]-B[1],p={width:l.width+u.width+N,height:Math.max(l.height,u.height),left:u.left+D,right:l.right,top:Math.min(l.top,u.top+R),bottom:Math.max(l.bottom,u.bottom+R)}),"right"===d.delta.position&&(D=M(d,"deltaPos",0,l.width*(1-y[d.align])+u.width*y[d.align]+N,O,Math.max),R=F[1]-B[1],p={width:l.width+u.width+N,height:Math.max(l.height,u.height),left:l.left,right:u.right+D,top:Math.min(l.top,u.top+R),bottom:Math.max(l.bottom,u.bottom+R)}),"bottom"===d.delta.position&&(D=null,R=u.height,p={width:Math.max(l.width,u.width),height:l.height+u.height,left:Math.min(l.left,u.left),right:Math.max(l.right,u.right),top:l.bottom-l.height,bottom:l.bottom+u.height}),"top"===d.delta.position&&(D=null,R=l.top,p={width:Math.max(l.width,u.width),height:l.height+u.height,left:Math.min(l.left,u.left),right:Math.max(l.right,u.right),top:l.bottom-l.height-u.height,bottom:l.bottom}),z.attr({dx:D,dy:R})}(d._hasNumber||d._hasDelta)&&C.attr("transform",(function(){var t=s.numbersScaler(p);O+=t[2];var e,r=M(d,"numbersScale",1,t[0],O,Math.min);d._scaleNumbers||(r=1),e=d._isAngular?_-r*p.bottom:_-r*(p.top+p.bottom)/2,d._numbersTop=r*p.top+e;var n=p[T];"center"===T&&(n=(p.left+p.right)/2);var i=g-r*n;return i=M(d,"numbersTranslate",0,i,O,Math.max),o(i,e)+a(r)}))}(t,I,e,{numbersX:p,numbersY:A,numbersScaler:S,transitionOpts:r,onComplete:d}),P&&(E={range:L.gauge.axis.range,color:L.gauge.bgcolor,line:{color:L.gauge.bordercolor,width:0},thickness:1},C={range:L.gauge.axis.range,color:"rgba(0, 0, 0, 0)",line:{color:L.gauge.bordercolor,width:L.gauge.borderwidth},thickness:1});var H=I.selectAll("g.angular").data(z?e:[]);H.exit().remove();var G=I.selectAll("g.angularaxis").data(z?e:[]);G.exit().remove(),z&&function(t,e,r,i){var a,c,u,f,p=r[0].trace,d=i.size,g=i.radius,m=i.innerRadius,v=i.gaugeBg,y=i.gaugeOutline,x=[d.l+d.w/2,d.t+d.h/2+g/2],T=i.gauge,k=i.layer,M=i.transitionOpts,A=i.onComplete,S=Math.PI/2;function E(t){var e=p.gauge.axis.range[0],r=(t-e)/(p.gauge.axis.range[1]-e)*Math.PI-S;return r<-S?-S:r>S?S:r}function C(t){return n.svg.arc().innerRadius((m+g)/2-t/2*(g-m)).outerRadius((m+g)/2+t/2*(g-m)).startAngle(-S)}function L(t){t.attr("d",(function(t){return C(t.thickness).startAngle(E(t.range[0])).endAngle(E(t.range[1]))()}))}T.enter().append("g").classed("angular",!0),T.attr("transform",o(x[0],x[1])),k.enter().append("g").classed("angularaxis",!0).classed("crisp",!0),k.selectAll("g.xangularaxistick,path,text").remove(),(a=w(t,p.gauge.axis)).type="linear",a.range=p.gauge.axis.range,a._id="xangularaxis",a.setScale();var I=function(t){return(a.range[0]-t.x)/(a.range[1]-a.range[0])*Math.PI+Math.PI},P={},z=h.makeLabelFns(a,0).labelStandoff;P.xFn=function(t){var e=I(t);return Math.cos(e)*z},P.yFn=function(t){var e=I(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(z+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*l)},P.anchorFn=function(t){var e=I(t),r=Math.cos(e);return Math.abs(r)<.1?"middle":r>0?"start":"end"},P.heightFn=function(t,e,r){var n=I(t);return-.5*(1+Math.sin(n))*r};var O=function(t){return o(x[0]+g*Math.cos(t),x[1]-g*Math.sin(t))};u=function(t){return O(I(t))};if(c=h.calcTicks(a),f=h.getTickSigns(a)[2],a.visible){f="inside"===a.ticks?-1:1;var D=(a.linewidth||1)/2;h.drawTicks(t,a,{vals:c,layer:k,path:"M"+f*D+",0h"+f*a.ticklen,transFn:function(t){var e=I(t);return O(e)+"rotate("+-s(e)+")"}}),h.drawLabels(t,a,{vals:c,layer:k,transFn:u,labelFns:P})}var R=[v].concat(p.gauge.steps),F=T.selectAll("g.bg-arc").data(R);F.enter().append("g").classed("bg-arc",!0).append("path"),F.select("path").call(L).call(_),F.exit().remove();var B=C(p.gauge.bar.thickness),N=T.selectAll("g.value-arc").data([p.gauge.bar]);N.enter().append("g").classed("value-arc",!0).append("path");var j=N.select("path");b(M)?(j.transition().duration(M.duration).ease(M.easing).each("end",(function(){A&&A()})).each("interrupt",(function(){A&&A()})).attrTween("d",(U=B,V=E(r[0].lastY),q=E(r[0].y),function(){var t=n.interpolate(V,q);return function(e){return U.endAngle(t(e))()}})),p._lastValue=r[0].y):j.attr("d","number"==typeof r[0].y?B.endAngle(E(r[0].y)):"M0,0Z");var U,V,q;j.call(_),N.exit().remove(),R=[];var H=p.gauge.threshold.value;H&&R.push({range:[H,H],color:p.gauge.threshold.color,line:{color:p.gauge.threshold.line.color,width:p.gauge.threshold.line.width},thickness:p.gauge.threshold.thickness});var G=T.selectAll("g.threshold-arc").data(R);G.enter().append("g").classed("threshold-arc",!0).append("path"),G.select("path").call(L).call(_),G.exit().remove();var Y=T.selectAll("g.gauge-outline").data([y]);Y.enter().append("g").classed("gauge-outline",!0).append("path"),Y.select("path").call(L).call(_),Y.exit().remove()}(t,0,e,{radius:N,innerRadius:j,gauge:H,layer:G,size:R,gaugeBg:E,gaugeOutline:C,transitionOpts:r,onComplete:d});var Y=I.selectAll("g.bullet").data(O?e:[]);Y.exit().remove();var W=I.selectAll("g.bulletaxis").data(O?e:[]);W.exit().remove(),O&&function(t,e,r,n){var i,a,s,l,c,f=r[0].trace,p=n.gauge,d=n.layer,g=n.gaugeBg,v=n.gaugeOutline,y=n.size,x=f.domain,T=n.transitionOpts,k=n.onComplete;p.enter().append("g").classed("bullet",!0),p.attr("transform",o(y.l,y.t)),d.enter().append("g").classed("bulletaxis",!0).classed("crisp",!0),d.selectAll("g.xbulletaxistick,path,text").remove();var M=y.h,A=f.gauge.bar.thickness*M,S=x.x[0],E=x.x[0]+(x.x[1]-x.x[0])*(f._hasNumber||f._hasDelta?1-u.bulletNumberDomainSize:1);(i=w(t,f.gauge.axis))._id="xbulletaxis",i.domain=[S,E],i.setScale(),a=h.calcTicks(i),s=h.makeTransTickFn(i),l=h.getTickSigns(i)[2],c=y.t+y.h,i.visible&&(h.drawTicks(t,i,{vals:"inside"===i.ticks?h.clipEnds(i,a):a,layer:d,path:h.makeTickPath(i,c,l),transFn:s}),h.drawLabels(t,i,{vals:a,layer:d,transFn:s,labelFns:h.makeLabelFns(i,c)}));function C(t){t.attr("width",(function(t){return Math.max(0,i.c2p(t.range[1])-i.c2p(t.range[0]))})).attr("x",(function(t){return i.c2p(t.range[0])})).attr("y",(function(t){return.5*(1-t.thickness)*M})).attr("height",(function(t){return t.thickness*M}))}var L=[g].concat(f.gauge.steps),I=p.selectAll("g.bg-bullet").data(L);I.enter().append("g").classed("bg-bullet",!0).append("rect"),I.select("rect").call(C).call(_),I.exit().remove();var P=p.selectAll("g.value-bullet").data([f.gauge.bar]);P.enter().append("g").classed("value-bullet",!0).append("rect"),P.select("rect").attr("height",A).attr("y",(M-A)/2).call(_),b(T)?P.select("rect").transition().duration(T.duration).ease(T.easing).each("end",(function(){k&&k()})).each("interrupt",(function(){k&&k()})).attr("width",Math.max(0,i.c2p(Math.min(f.gauge.axis.range[1],r[0].y)))):P.select("rect").attr("width","number"==typeof r[0].y?Math.max(0,i.c2p(Math.min(f.gauge.axis.range[1],r[0].y))):0);P.exit().remove();var z=r.filter((function(){return f.gauge.threshold.value})),O=p.selectAll("g.threshold-bullet").data(z);O.enter().append("g").classed("threshold-bullet",!0).append("line"),O.select("line").attr("x1",i.c2p(f.gauge.threshold.value)).attr("x2",i.c2p(f.gauge.threshold.value)).attr("y1",(1-f.gauge.threshold.thickness)/2*M).attr("y2",(1-(1-f.gauge.threshold.thickness)/2)*M).call(m.stroke,f.gauge.threshold.line.color).style("stroke-width",f.gauge.threshold.line.width),O.exit().remove();var D=p.selectAll("g.gauge-outline").data([v]);D.enter().append("g").classed("gauge-outline",!0).append("rect"),D.select("rect").call(C).call(_),D.exit().remove()}(t,0,e,{gauge:Y,layer:W,size:R,gaugeBg:E,gaugeOutline:C,transitionOpts:r,onComplete:d});var X=I.selectAll("text.title").data(e);X.exit().remove(),X.enter().append("text").classed("title",!0),X.attr("text-anchor",(function(){return O?v.right:v[L.title.align]})).text(L.title.text).call(c.font,L.title.font).call(f.convertToTspans,t),X.attr("transform",(function(){var t,e=R.l+R.w*y[L.title.align],r=u.titlePadding,n=c.bBox(X.node());if(P){if(z)if(L.gauge.axis.visible)t=c.bBox(G.node()).top-r-n.bottom;else t=R.t+R.h/2-N/2-n.bottom-r;O&&(t=A-(n.top+n.bottom)/2,e=R.l-u.bulletPadding*R.w)}else t=L._numbersTop-r-n.bottom;return o(e,t)}))}))}},{"../../components/color":643,"../../components/drawing":665,"../../constants/alignment":745,"../../lib":778,"../../lib/svg_text_utils":803,"../../plots/cartesian/axes":828,"../../plots/cartesian/axis_defaults":830,"../../plots/cartesian/layout_attributes":842,"../../plots/cartesian/position_defaults":845,"./constants":1119,d3:169}],1123:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../mesh3d/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l=t("../../plot_api/edit_types").overrideAll;var c=e.exports=l(s({x:{valType:"data_array"},y:{valType:"data_array"},z:{valType:"data_array"},value:{valType:"data_array"},isomin:{valType:"number"},isomax:{valType:"number"},surface:{show:{valType:"boolean",dflt:!0},count:{valType:"integer",dflt:2,min:1},fill:{valType:"number",min:0,max:1,dflt:1},pattern:{valType:"flaglist",flags:["A","B","C","D","E"],extras:["all","odd","even"],dflt:"all"}},spaceframe:{show:{valType:"boolean",dflt:!1},fill:{valType:"number",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!1},locations:{valType:"data_array",dflt:[]},fill:{valType:"number",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},y:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}},z:{show:{valType:"boolean",dflt:!0},fill:{valType:"number",min:0,max:1,dflt:1}}},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:i(),showlegend:s({},o.showlegend,{dflt:!1})},n("",{colorAttr:"`value`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:a.opacity,lightposition:a.lightposition,lighting:a.lighting,flatshading:a.flatshading,contour:a.contour,hoverinfo:s({},o.hoverinfo)}),"calc","nested");c.flatshading.dflt=!0,c.lighting.facenormalsepsilon.dflt=0,c.x.editType=c.y.editType=c.z.editType=c.value.editType="calc+clearAxisTypes",c.transforms=void 0},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plots/attributes":824,"../../plots/template_attributes":906,"../mesh3d/attributes":1128}],1124:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc"),i=t("../streamtube/calc").processGrid,a=t("../streamtube/calc").filter;e.exports=function(t,e){e._len=Math.min(e.x.length,e.y.length,e.z.length,e.value.length),e._x=a(e.x,e._len),e._y=a(e.y,e._len),e._z=a(e.z,e._len),e._value=a(e.value,e._len);var r=i(e);e._gridFill=r.fill,e._Xs=r.Xs,e._Ys=r.Ys,e._Zs=r.Zs,e._len=r.len;for(var o=1/0,s=-1/0,l=0;l0;r--){var n=Math.min(e[r],e[r-1]),i=Math.max(e[r],e[r-1]);if(i>n&&n-1}function R(t,e){return null===t?e:t}function F(e,r,n){L();var i,a,o,l=[r],c=[n];if(s>=1)l=[r],c=[n];else if(s>0){var u=function(t,e){var r=t[0],n=t[1],i=t[2],a=function(t,e,r){for(var n=[],i=0;i-1?n[p]:C(d,g,v);h[p]=x>-1?x:P(d,g,v,R(e,y))}i=h[0],a=h[1],o=h[2],t._meshI.push(i),t._meshJ.push(a),t._meshK.push(o),++m}}function B(t,e,r,n){var i=t[3];in&&(i=n);for(var a=(t[3]-i)/(t[3]-e[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-a)*t[s]+a*e[s];return o}function N(t,e,r){return t>=e&&t<=r}function j(t){var e=.001*(E-S);return t>=S-e&&t<=E+e}function U(e){for(var r=[],n=0;n<4;n++){var i=e[n];r.push([t._x[i],t._y[i],t._z[i],t._value[i]])}return r}function V(t,e,r,n,i,a){a||(a=1),r=[-1,-1,-1];var o=!1,s=[N(e[0][3],n,i),N(e[1][3],n,i),N(e[2][3],n,i)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(t,e,r){return j(e[0][3])&&j(e[1][3])&&j(e[2][3])?(F(t,e,r),!0):a<3&&V(t,e,r,S,E,++a)};if(s[0]&&s[1]&&s[2])return l(t,e,r)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach((function(a){if(s[a[0]]&&s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(h,u,n,i),d=B(h,f,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,o=l(t,[u,f,d],[r[a[0]],r[a[1]],-1])||o,c=!0}})),c||[[0,1,2],[1,2,0],[2,0,1]].forEach((function(a){if(s[a[0]]&&!s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(f,u,n,i),d=B(h,u,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,c=!0}})),o}function q(t,e,r,n){var i=!1,a=U(e),o=[N(a[0][3],r,n),N(a[1][3],r,n),N(a[2][3],r,n),N(a[3][3],r,n)];if(!(o[0]||o[1]||o[2]||o[3]))return i;if(o[0]&&o[1]&&o[2]&&o[3])return g&&(i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(3,0,1),n(2,3,0),n(1,2,3)}(t,a,e)||i),i;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]];if(g)i=F(t,[c,u,f],[e[l[0]],e[l[1]],e[l[2]]])||i;else{var p=B(h,c,r,n),d=B(h,u,r,n),m=B(h,f,r,n);i=F(null,[p,d,m],[-1,-1,-1])||i}s=!0}})),s?i:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(f,c,r,n),d=B(f,u,r,n),m=B(h,u,r,n),v=B(h,c,r,n);g?(i=F(t,[c,v,p],[e[l[0]],-1,-1])||i,i=F(t,[u,d,m],[e[l[1]],-1,-1])||i):i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(2,3,0)}(null,[p,d,m,v],[-1,-1,-1,-1])||i,s=!0}})),s||[[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach((function(l){if(o[l[0]]&&!o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(u,c,r,n),d=B(f,c,r,n),m=B(h,c,r,n);g?(i=F(t,[c,p,d],[e[l[0]],-1,-1])||i,i=F(t,[c,d,m],[e[l[0]],-1,-1])||i,i=F(t,[c,m,p],[e[l[0]],-1,-1])||i):i=F(null,[p,d,m],[-1,-1,-1])||i,s=!0}})),i)}function H(t,e,r,n,i,a,o,s,l,c,u){var f=!1;return d&&(D(t,"A")&&(f=q(null,[e,r,n,a],c,u)||f),D(t,"B")&&(f=q(null,[r,n,i,l],c,u)||f),D(t,"C")&&(f=q(null,[r,a,o,l],c,u)||f),D(t,"D")&&(f=q(null,[n,a,s,l],c,u)||f),D(t,"E")&&(f=q(null,[r,n,a,l],c,u)||f)),g&&(f=q(t,[r,n,a,l],c,u)||f),f}function G(t,e,r,n,i,a,o,s){return[!0===s[0]||V(t,U([e,r,n]),[e,r,n],a,o),!0===s[1]||V(t,U([n,i,e]),[n,i,e],a,o)]}function Y(t,e,r,n,i,a,o,s,l){return s?G(t,e,r,i,n,a,o,l):G(t,r,i,n,e,a,o,l)}function W(t,e,r,n,i,a,o){var s,l,c,u,f=!1,h=function(){f=V(t,[s,l,c],[-1,-1,-1],i,a)||f,f=V(t,[c,u,s],[-1,-1,-1],i,a)||f},p=o[0],d=o[1],g=o[2];return p&&(s=z(U([k(e,r-0,n-0)])[0],U([k(e-1,r-0,n-0)])[0],p),l=z(U([k(e,r-0,n-1)])[0],U([k(e-1,r-0,n-1)])[0],p),c=z(U([k(e,r-1,n-1)])[0],U([k(e-1,r-1,n-1)])[0],p),u=z(U([k(e,r-1,n-0)])[0],U([k(e-1,r-1,n-0)])[0],p),h()),d&&(s=z(U([k(e-0,r,n-0)])[0],U([k(e-0,r-1,n-0)])[0],d),l=z(U([k(e-0,r,n-1)])[0],U([k(e-0,r-1,n-1)])[0],d),c=z(U([k(e-1,r,n-1)])[0],U([k(e-1,r-1,n-1)])[0],d),u=z(U([k(e-1,r,n-0)])[0],U([k(e-1,r-1,n-0)])[0],d),h()),g&&(s=z(U([k(e-0,r-0,n)])[0],U([k(e-0,r-0,n-1)])[0],g),l=z(U([k(e-0,r-1,n)])[0],U([k(e-0,r-1,n-1)])[0],g),c=z(U([k(e-1,r-1,n)])[0],U([k(e-1,r-1,n-1)])[0],g),u=z(U([k(e-1,r-0,n)])[0],U([k(e-1,r-0,n-1)])[0],g),h()),f}function X(t,e,r,n,i,a,o,s,l,c,u,f){var h=t;return f?(d&&"even"===t&&(h=null),H(h,e,r,n,i,a,o,s,l,c,u)):(d&&"odd"===t&&(h=null),H(h,l,s,o,a,i,n,r,e,c,u))}function Z(t,e,r,n,i){for(var a=[],o=0,s=0;sMath.abs(d-A)?[M,d]:[d,A];$(e,T[0],T[1])}}var C=[[Math.min(S,A),Math.max(S,A)],[Math.min(M,E),Math.max(M,E)]];["x","y","z"].forEach((function(e){for(var r=[],n=0;n0&&(u.push(p.id),"x"===e?f.push([p.distRatio,0,0]):"y"===e?f.push([0,p.distRatio,0]):f.push([0,0,p.distRatio]))}else c=nt(1,"x"===e?b-1:"y"===e?_-1:w-1);u.length>0&&(r[i]="x"===e?tt(null,u,a,o,f,r[i]):"y"===e?et(null,u,a,o,f,r[i]):rt(null,u,a,o,f,r[i]),i++),c.length>0&&(r[i]="x"===e?Z(null,c,a,o,r[i]):"y"===e?J(null,c,a,o,r[i]):K(null,c,a,o,r[i]),i++)}var d=t.caps[e];d.show&&d.fill&&(O(d.fill),r[i]="x"===e?Z(null,[0,b-1],a,o,r[i]):"y"===e?J(null,[0,_-1],a,o,r[i]):K(null,[0,w-1],a,o,r[i]),i++)}})),0===m&&I(),t._meshX=n,t._meshY=i,t._meshZ=a,t._meshIntensity=o,t._Xs=v,t._Ys=y,t._Zs=x}(),t}e.exports={findNearestOnAxis:l,generateIsoMeshes:h,createIsosurfaceTrace:function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new c(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}}},{"../../components/colorscale":655,"../../lib/gl_format_color":774,"../../lib/str2rgbarray":802,"../../plots/gl3d/zip3":881,"gl-mesh3d":309}],1126:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./attributes"),o=t("../../components/colorscale/defaults");function s(t,e,r,n,a){var s=a("isomin"),l=a("isomax");null!=l&&null!=s&&s>l&&(e.isomin=null,e.isomax=null);var c=a("x"),u=a("y"),f=a("z"),h=a("value");c&&c.length&&u&&u.length&&f&&f.length&&h&&h.length?(i.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x","y","z"],n),["x","y","z"].forEach((function(t){var e="caps."+t;a(e+".show")&&a(e+".fill");var r="slices."+t;a(r+".show")&&(a(r+".fill"),a(r+".locations"))})),a("spaceframe.show")&&a("spaceframe.fill"),a("surface.show")&&(a("surface.count"),a("surface.fill"),a("surface.pattern")),a("contour.show")&&(a("contour.color"),a("contour.width")),["text","hovertext","hovertemplate","lighting.ambient","lighting.diffuse","lighting.specular","lighting.roughness","lighting.fresnel","lighting.vertexnormalsepsilon","lighting.facenormalsepsilon","lightposition.x","lightposition.y","lightposition.z","flatshading","opacity"].forEach((function(t){a(t)})),o(t,e,n,a,{prefix:"",cLetter:"c"}),e._length=null):e.visible=!1}e.exports={supplyDefaults:function(t,e,r,i){s(t,e,r,i,(function(r,i){return n.coerce(t,e,a,r,i)}))},supplyIsoDefaults:s}},{"../../components/colorscale/defaults":653,"../../lib":778,"../../registry":911,"./attributes":1123}],1127:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults").supplyDefaults,calc:t("./calc"),colorbar:{min:"cmin",max:"cmax"},plot:t("./convert").createIsosurfaceTrace,moduleType:"trace",name:"isosurface",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","showLegend"],meta:{}}},{"../../plots/gl3d":870,"./attributes":1123,"./calc":1124,"./convert":1125,"./defaults":1126}],1128:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../surface/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat;e.exports=s({x:{valType:"data_array",editType:"calc+clearAxisTypes"},y:{valType:"data_array",editType:"calc+clearAxisTypes"},z:{valType:"data_array",editType:"calc+clearAxisTypes"},i:{valType:"data_array",editType:"calc"},j:{valType:"data_array",editType:"calc"},k:{valType:"data_array",editType:"calc"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},hovertemplate:i({editType:"calc"}),delaunayaxis:{valType:"enumerated",values:["x","y","z"],dflt:"z",editType:"calc"},alphahull:{valType:"number",dflt:-1,editType:"calc"},intensity:{valType:"data_array",editType:"calc"},intensitymode:{valType:"enumerated",values:["vertex","cell"],dflt:"vertex",editType:"calc"},color:{valType:"color",editType:"calc"},vertexcolor:{valType:"data_array",editType:"calc"},facecolor:{valType:"data_array",editType:"calc"},transforms:void 0},n("",{colorAttr:"`intensity`",showScaleDflt:!0,editTypeOverride:"calc"}),{opacity:a.opacity,flatshading:{valType:"boolean",dflt:!1,editType:"calc"},contour:{show:s({},a.contours.x.show,{}),color:a.contours.x.color,width:a.contours.x.width,editType:"calc"},lightposition:{x:s({},a.lightposition.x,{dflt:1e5}),y:s({},a.lightposition.y,{dflt:1e5}),z:s({},a.lightposition.z,{dflt:0}),editType:"calc"},lighting:s({vertexnormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-12,editType:"calc"},facenormalsepsilon:{valType:"number",min:0,max:1,dflt:1e-6,editType:"calc"},editType:"calc"},a.lighting),hoverinfo:s({},o.hoverinfo,{editType:"calc"}),showlegend:s({},o.showlegend,{dflt:!1})})},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../surface/attributes":1311}],1129:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){e.intensity&&n(t,e,{vals:e.intensity,containerStr:"",cLetter:"c"})}},{"../../components/colorscale/calc":651}],1130:[function(t,e,r){"use strict";var n=t("gl-mesh3d"),i=t("delaunay-triangulate"),a=t("alpha-shape"),o=t("convex-hull"),s=t("../../lib/gl_format_color").parseColorScale,l=t("../../lib/str2rgbarray"),c=t("../../components/colorscale").extractOpts,u=t("../../plots/gl3d/zip3");function f(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name="",this.color="#fff",this.data=null,this.showContour=!1}var h=f.prototype;function p(t){for(var e=[],r=t.length,n=0;n=e-.5)return!1;return!0}h.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index;t.data._cellCenter?t.traceCoordinate=t.data.dataCoordinate:t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]];var r=this.data.hovertext||this.data.text;return Array.isArray(r)&&void 0!==r[e]?t.textLabel=r[e]:r&&(t.textLabel=r),!0}},h.update=function(t){var e=this.scene,r=e.fullSceneLayout;this.data=t;var n,f=t.x.length,h=u(d(r.xaxis,t.x,e.dataScale[0],t.xcalendar),d(r.yaxis,t.y,e.dataScale[1],t.ycalendar),d(r.zaxis,t.z,e.dataScale[2],t.zcalendar));if(t.i&&t.j&&t.k){if(t.i.length!==t.j.length||t.j.length!==t.k.length||!m(t.i,f)||!m(t.j,f)||!m(t.k,f))return;n=u(g(t.i),g(t.j),g(t.k))}else n=0===t.alphahull?o(h):t.alphahull>0?a(t.alphahull,h):function(t,e){for(var r=["x","y","z"].indexOf(t),n=[],a=e.length,o=0;ov):m=M>w,v=M;var A=c(w,T,k,M);A.pos=_,A.yc=(w+M)/2,A.i=b,A.dir=m?"increasing":"decreasing",A.x=A.pos,A.y=[k,T],y&&(A.orig_p=r[b]),d&&(A.tx=e.text[b]),g&&(A.htx=e.hovertext[b]),x.push(A)}else x.push({pos:_,empty:!0})}return e._extremes[l._id]=a.findExtremes(l,n.concat(h,f),{padded:!0}),x.length&&(x[0].t={labels:{open:i(t,"open:")+" ",high:i(t,"high:")+" ",low:i(t,"low:")+" ",close:i(t,"close:")+" "}}),x}e.exports={calc:function(t,e){var r=a.getFromId(t,e.xaxis),i=a.getFromId(t,e.yaxis),s=function(t,e,r){var i=r._minDiff;if(!i){var a,s=t._fullData,l=[];for(i=1/0,a=0;a"+c.labels[x]+n.hoverLabelText(s,b):((y=i.extendFlat({},h)).y0=y.y1=_,y.yLabelVal=b,y.yLabel=c.labels[x]+n.hoverLabelText(s,b),y.name="",f.push(y),m[b]=y)}return f}function h(t,e,r,i){var a=t.cd,o=t.ya,l=a[0].trace,f=a[0].t,h=u(t,e,r,i);if(!h)return[];var p=a[h.index],d=h.index=p.i,g=p.dir;function m(t){return f.labels[t]+n.hoverLabelText(o,l[t][d])}var v=p.hi||l.hoverinfo,y=v.split("+"),x="all"===v,b=x||-1!==y.indexOf("y"),_=x||-1!==y.indexOf("text"),w=b?[m("open"),m("high"),m("low"),m("close")+" "+c[g]]:[];return _&&s(p,l,w),h.extraText=w.join("
"),h.y0=h.y1=o.c2p(p.yc,!0),[h]}e.exports={hoverPoints:function(t,e,r,n){return t.cd[0].trace.hoverlabel.split?f(t,e,r,n):h(t,e,r,n)},hoverSplit:f,hoverOnPoints:h}},{"../../components/color":643,"../../components/fx":683,"../../constants/delta.js":747,"../../lib":778,"../../plots/cartesian/axes":828}],1137:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"ohlc",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","showLegend"],meta:{},attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc").calc,plot:t("./plot"),style:t("./style"),hoverPoints:t("./hover").hoverPoints,selectPoints:t("./select")}},{"../../plots/cartesian":841,"./attributes":1133,"./calc":1134,"./defaults":1135,"./hover":1136,"./plot":1139,"./select":1140,"./style":1141}],1138:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib");e.exports=function(t,e,r,a){var o=r("x"),s=r("open"),l=r("high"),c=r("low"),u=r("close");if(r("hoverlabel.split"),n.getComponentMethod("calendars","handleTraceDefaults")(t,e,["x"],a),s&&l&&c&&u){var f=Math.min(s.length,l.length,c.length,u.length);return o&&(f=Math.min(f,i.minRowLength(o))),e._length=f,f}}},{"../../lib":778,"../../registry":911}],1139:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib");e.exports=function(t,e,r,a){var o=e.yaxis,s=e.xaxis,l=!!s.rangebreaks;i.makeTraceGroups(a,r,"trace ohlc").each((function(t){var e=n.select(this),r=t[0],a=r.t;if(!0!==r.trace.visible||a.empty)e.remove();else{var c=a.tickLen,u=e.selectAll("path").data(i.identity);u.enter().append("path"),u.exit().remove(),u.attr("d",(function(t){if(t.empty)return"M0,0Z";var e=s.c2p(t.pos-c,!0),r=s.c2p(t.pos+c,!0),n=l?(e+r)/2:s.c2p(t.pos,!0);return"M"+e+","+o.c2p(t.o,!0)+"H"+n+"M"+n+","+o.c2p(t.h,!0)+"V"+o.c2p(t.l,!0)+"M"+r+","+o.c2p(t.c,!0)+"H"+n}))}}))}},{"../../lib":778,d3:169}],1140:[function(t,e,r){"use strict";e.exports=function(t,e){var r,n=t.cd,i=t.xaxis,a=t.yaxis,o=[],s=n[0].t.bPos||0;if(!1===e)for(r=0;r=t.length)return!1;if(void 0!==e[t[r]])return!1;e[t[r]]=!0}return!0}(t.map((function(t){return t.displayindex}))))for(e=0;e0;c&&(o="array");var u=r("categoryorder",o);"array"===u?(r("categoryarray"),r("ticktext")):(delete t.categoryarray,delete t.ticktext),c||"array"!==u||(e.categoryorder="trace")}}e.exports=function(t,e,r,f){function h(r,i){return n.coerce(t,e,l,r,i)}var p=s(t,e,{name:"dimensions",handleItemDefaults:u}),d=function(t,e,r,o,s){s("line.shape"),s("line.hovertemplate");var l=s("line.color",o.colorway[0]);if(i(t,"line")&&n.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(t,e,o,s,{prefix:"line.",cLetter:"c"}),l.length;e.line.color=r}return 1/0}(t,e,r,f,h);o(e,f,h),Array.isArray(p)&&p.length||(e.visible=!1),c(e,p,"values",d),h("hoveron"),h("hovertemplate"),h("arrangement"),h("bundlecolors"),h("sortpaths"),h("counts");var g={family:f.font.family,size:Math.round(f.font.size),color:f.font.color};n.coerceFont(h,"labelfont",g);var m={family:f.font.family,size:Math.round(f.font.size/1.2),color:f.font.color};n.coerceFont(h,"tickfont",m)}},{"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"../../lib":778,"../../plots/array_container_defaults":823,"../../plots/domain":855,"../parcoords/merge_length":1158,"./attributes":1142}],1146:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcats",basePlotModule:t("./base_plot"),categories:["noOpacity"],meta:{}}},{"./attributes":1142,"./base_plot":1143,"./calc":1144,"./defaults":1145,"./plot":1148}],1147:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../plot_api/plot_api"),a=t("../../components/fx"),o=t("../../lib"),s=o.strTranslate,l=t("../../components/drawing"),c=t("tinycolor2"),u=t("../../lib/svg_text_utils");function f(t,e,r,i){var a=t.map(R.bind(0,e,r)),c=i.selectAll("g.parcatslayer").data([null]);c.enter().append("g").attr("class","parcatslayer").style("pointer-events","all");var f=c.selectAll("g.trace.parcats").data(a,h),v=f.enter().append("g").attr("class","trace parcats");f.attr("transform",(function(t){return s(t.x,t.y)})),v.append("g").attr("class","paths");var y=f.select("g.paths").selectAll("path.path").data((function(t){return t.paths}),h);y.attr("fill",(function(t){return t.model.color}));var _=y.enter().append("path").attr("class","path").attr("stroke-opacity",0).attr("fill",(function(t){return t.model.color})).attr("fill-opacity",0);b(_),y.attr("d",(function(t){return t.svgD})),_.empty()||y.sort(d),y.exit().remove(),y.on("mouseover",g).on("mouseout",m).on("click",x),v.append("g").attr("class","dimensions");var k=f.select("g.dimensions").selectAll("g.dimension").data((function(t){return t.dimensions}),h);k.enter().append("g").attr("class","dimension"),k.attr("transform",(function(t){return s(t.x,0)})),k.exit().remove();var M=k.selectAll("g.category").data((function(t){return t.categories}),h),A=M.enter().append("g").attr("class","category");M.attr("transform",(function(t){return s(0,t.y)})),A.append("rect").attr("class","catrect").attr("pointer-events","none"),M.select("rect.catrect").attr("fill","none").attr("width",(function(t){return t.width})).attr("height",(function(t){return t.height})),w(A);var S=M.selectAll("rect.bandrect").data((function(t){return t.bands}),h);S.each((function(){o.raiseToTop(this)})),S.attr("fill",(function(t){return t.color}));var z=S.enter().append("rect").attr("class","bandrect").attr("stroke-opacity",0).attr("fill",(function(t){return t.color})).attr("fill-opacity",0);S.attr("fill",(function(t){return t.color})).attr("width",(function(t){return t.width})).attr("height",(function(t){return t.height})).attr("y",(function(t){return t.y})).attr("cursor",(function(t){return"fixed"===t.parcatsViewModel.arrangement?"default":"perpendicular"===t.parcatsViewModel.arrangement?"ns-resize":"move"})),T(z),S.exit().remove(),A.append("text").attr("class","catlabel").attr("pointer-events","none");var O=e._fullLayout.paper_bgcolor;M.select("text.catlabel").attr("text-anchor",(function(t){return p(t)?"start":"end"})).attr("alignment-baseline","middle").style("text-shadow",O+" -1px 1px 2px, "+O+" 1px 1px 2px, "+O+" 1px -1px 2px, "+O+" -1px -1px 2px").style("fill","rgb(0, 0, 0)").attr("x",(function(t){return p(t)?t.width+5:-5})).attr("y",(function(t){return t.height/2})).text((function(t){return t.model.categoryLabel})).each((function(t){l.font(n.select(this),t.parcatsViewModel.categorylabelfont),u.convertToTspans(n.select(this),e)})),A.append("text").attr("class","dimlabel"),M.select("text.dimlabel").attr("text-anchor","middle").attr("alignment-baseline","baseline").attr("cursor",(function(t){return"fixed"===t.parcatsViewModel.arrangement?"default":"ew-resize"})).attr("x",(function(t){return t.width/2})).attr("y",-5).text((function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null})).each((function(t){l.font(n.select(this),t.parcatsViewModel.labelfont)})),M.selectAll("rect.bandrect").on("mouseover",E).on("mouseout",C),M.exit().remove(),k.call(n.behavior.drag().origin((function(t){return{x:t.x,y:0}})).on("dragstart",L).on("drag",I).on("dragend",P)),f.each((function(t){t.traceSelection=n.select(this),t.pathSelection=n.select(this).selectAll("g.paths").selectAll("path.path"),t.dimensionSelection=n.select(this).selectAll("g.dimensions").selectAll("g.dimension")})),f.exit().remove()}function h(t){return t.key}function p(t){var e=t.parcatsViewModel.dimensions.length,r=t.parcatsViewModel.dimensions[e-1].model.dimensionInd;return t.model.dimensionInd===r}function d(t,e){return t.model.rawColor>e.model.rawColor?1:t.model.rawColor"),C=n.mouse(f)[0];a.loneHover({trace:h,x:b-d.left+g.left,y:w-d.top+g.top,text:E,color:t.model.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:10,fontColor:T,idealAlign:C1&&h.displayInd===f.dimensions.length-1?(i=c.left,a="left"):(i=c.left+c.width,a="right");var g=u.model.count,m=u.model.categoryLabel,v=g/u.parcatsViewModel.model.count,y={countLabel:g,categoryLabel:m,probabilityLabel:v.toFixed(3)},x=[];-1!==u.parcatsViewModel.hoverinfoItems.indexOf("count")&&x.push(["Count:",y.countLabel].join(" ")),-1!==u.parcatsViewModel.hoverinfoItems.indexOf("probability")&&x.push(["P("+y.categoryLabel+"):",y.probabilityLabel].join(" "));var b=x.join("
");return{trace:p,x:o*(i-e.left),y:s*(d-e.top),text:b,color:"lightgray",borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontSize:12,fontColor:"black",idealAlign:a,hovertemplate:p.hovertemplate,hovertemplateLabels:y,eventData:[{data:p._input,fullData:p,count:g,category:m,probability:v}]}}function E(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf("skip")){if(n.mouse(this)[1]<-1)return;var e,r=t.parcatsViewModel.graphDiv,i=r._fullLayout,s=i._paperdiv.node().getBoundingClientRect(),l=t.parcatsViewModel.hoveron;if("color"===l?(!function(t){var e=n.select(t).datum(),r=k(e);_(r),r.each((function(){o.raiseToTop(this)})),n.select(t.parentNode).selectAll("rect.bandrect").filter((function(t){return t.color===e.color})).each((function(){o.raiseToTop(this),n.select(this).attr("stroke","black").attr("stroke-width",1.5)}))}(this),A(this,"plotly_hover",n.event)):(!function(t){n.select(t.parentNode).selectAll("rect.bandrect").each((function(t){var e=k(t);_(e),e.each((function(){o.raiseToTop(this)}))})),n.select(t.parentNode).select("rect.catrect").attr("stroke","black").attr("stroke-width",2.5)}(this),M(this,"plotly_hover",n.event)),-1===t.parcatsViewModel.hoverinfoItems.indexOf("none"))"category"===l?e=S(r,s,this):"color"===l?e=function(t,e,r){t._fullLayout._calcInverseTransform(t);var i,a,o=t._fullLayout._invScaleX,s=t._fullLayout._invScaleY,l=r.getBoundingClientRect(),u=n.select(r).datum(),f=u.categoryViewModel,h=f.parcatsViewModel,p=h.model.dimensions[f.model.dimensionInd],d=h.trace,g=l.y+l.height/2;h.dimensions.length>1&&p.displayInd===h.dimensions.length-1?(i=l.left,a="left"):(i=l.left+l.width,a="right");var m=f.model.categoryLabel,v=u.parcatsViewModel.model.count,y=0;u.categoryViewModel.bands.forEach((function(t){t.color===u.color&&(y+=t.count)}));var x=f.model.count,b=0;h.pathSelection.each((function(t){t.model.color===u.color&&(b+=t.model.count)}));var _=y/v,w=y/b,T=y/x,k={countLabel:v,categoryLabel:m,probabilityLabel:_.toFixed(3)},M=[];-1!==f.parcatsViewModel.hoverinfoItems.indexOf("count")&&M.push(["Count:",k.countLabel].join(" ")),-1!==f.parcatsViewModel.hoverinfoItems.indexOf("probability")&&(M.push("P(color \u2229 "+m+"): "+k.probabilityLabel),M.push("P("+m+" | color): "+w.toFixed(3)),M.push("P(color | "+m+"): "+T.toFixed(3)));var A=M.join("
"),S=c.mostReadable(u.color,["black","white"]);return{trace:d,x:o*(i-e.left),y:s*(g-e.top),text:A,color:u.color,borderColor:"black",fontFamily:'Monaco, "Courier New", monospace',fontColor:S,fontSize:10,idealAlign:a,hovertemplate:d.hovertemplate,hovertemplateLabels:k,eventData:[{data:d._input,fullData:d,category:m,count:v,probability:_,categorycount:x,colorcount:b,bandcolorcount:y}]}}(r,s,this):"dimension"===l&&(e=function(t,e,r){var i=[];return n.select(r.parentNode.parentNode).selectAll("g.category").select("rect.catrect").each((function(){i.push(S(t,e,this))})),i}(r,s,this)),e&&a.loneHover(e,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:r})}}function C(t){var e=t.parcatsViewModel;if(!e.dragDimension&&(b(e.pathSelection),w(e.dimensionSelection.selectAll("g.category")),T(e.dimensionSelection.selectAll("g.category").selectAll("rect.bandrect")),a.loneUnhover(e.graphDiv._fullLayout._hoverlayer.node()),e.pathSelection.sort(d),-1===e.hoverinfoItems.indexOf("skip"))){"color"===t.parcatsViewModel.hoveron?A(this,"plotly_unhover",n.event):M(this,"plotly_unhover",n.event)}}function L(t){"fixed"!==t.parcatsViewModel.arrangement&&(t.dragDimensionDisplayInd=t.model.displayInd,t.initialDragDimensionDisplayInds=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),t.dragHasMoved=!1,t.dragCategoryDisplayInd=null,n.select(this).selectAll("g.category").select("rect.catrect").each((function(e){var r=n.mouse(this)[0],i=n.mouse(this)[1];-2<=r&&r<=e.width+2&&-2<=i&&i<=e.height+2&&(t.dragCategoryDisplayInd=e.model.displayInd,t.initialDragCategoryDisplayInds=t.model.categories.map((function(t){return t.displayInd})),e.model.dragY=e.y,o.raiseToTop(this.parentNode),n.select(this.parentNode).selectAll("rect.bandrect").each((function(e){e.yf.y+f.height/2&&(o.model.displayInd=f.model.displayInd,f.model.displayInd=l),t.dragCategoryDisplayInd=o.model.displayInd}if(null===t.dragCategoryDisplayInd||"freeform"===t.parcatsViewModel.arrangement){a.model.dragX=n.event.x;var h=t.parcatsViewModel.dimensions[r],p=t.parcatsViewModel.dimensions[i];void 0!==h&&a.model.dragXp.x&&(a.model.displayInd=p.model.displayInd,p.model.displayInd=t.dragDimensionDisplayInd),t.dragDimensionDisplayInd=a.model.displayInd}N(t.parcatsViewModel),B(t.parcatsViewModel),D(t.parcatsViewModel),O(t.parcatsViewModel)}}function P(t){if("fixed"!==t.parcatsViewModel.arrangement&&null!==t.dragDimensionDisplayInd){n.select(this).selectAll("text").attr("font-weight","normal");var e={},r=z(t.parcatsViewModel),a=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),o=t.initialDragDimensionDisplayInds.some((function(t,e){return t!==a[e]}));o&&a.forEach((function(r,n){var i=t.parcatsViewModel.model.dimensions[n].containerInd;e["dimensions["+i+"].displayindex"]=r}));var s=!1;if(null!==t.dragCategoryDisplayInd){var l=t.model.categories.map((function(t){return t.displayInd}));if(s=t.initialDragCategoryDisplayInds.some((function(t,e){return t!==l[e]}))){var c=t.model.categories.slice().sort((function(t,e){return t.displayInd-e.displayInd})),u=c.map((function(t){return t.categoryValue})),f=c.map((function(t){return t.categoryLabel}));e["dimensions["+t.model.containerInd+"].categoryarray"]=[u],e["dimensions["+t.model.containerInd+"].ticktext"]=[f],e["dimensions["+t.model.containerInd+"].categoryorder"]="array"}}if(-1===t.parcatsViewModel.hoverinfoItems.indexOf("skip")&&!t.dragHasMoved&&t.potentialClickBand&&("color"===t.parcatsViewModel.hoveron?A(t.potentialClickBand,"plotly_click",n.event.sourceEvent):M(t.potentialClickBand,"plotly_click",n.event.sourceEvent)),t.model.dragX=null,null!==t.dragCategoryDisplayInd)t.parcatsViewModel.dimensions[t.dragDimensionDisplayInd].categories[t.dragCategoryDisplayInd].model.dragY=null,t.dragCategoryDisplayInd=null;t.dragDimensionDisplayInd=null,t.parcatsViewModel.dragDimension=null,t.dragHasMoved=null,t.potentialClickBand=null,N(t.parcatsViewModel),B(t.parcatsViewModel),n.transition().duration(300).ease("cubic-in-out").each((function(){D(t.parcatsViewModel,!0),O(t.parcatsViewModel,!0)})).each("end",(function(){(o||s)&&i.restyle(t.parcatsViewModel.graphDiv,e,[r])}))}}function z(t){for(var e,r=t.graphDiv._fullData,n=0;n=0;s--)u+="C"+c[s]+","+(e[s+1]+i)+" "+l[s]+","+(e[s]+i)+" "+(t[s]+r[s])+","+(e[s]+i),u+="l-"+r[s]+",0 ";return u+="Z"}function B(t){var e=t.dimensions,r=t.model,n=e.map((function(t){return t.categories.map((function(t){return t.y}))})),i=t.model.dimensions.map((function(t){return t.categories.map((function(t){return t.displayInd}))})),a=t.model.dimensions.map((function(t){return t.displayInd})),o=t.dimensions.map((function(t){return t.model.dimensionInd})),s=e.map((function(t){return t.x})),l=e.map((function(t){return t.width})),c=[];for(var u in r.paths)r.paths.hasOwnProperty(u)&&c.push(r.paths[u]);function f(t){var e=t.categoryInds.map((function(t,e){return i[e][t]}));return o.map((function(t){return e[t]}))}c.sort((function(e,r){var n=f(e),i=f(r);return"backward"===t.sortpaths&&(n.reverse(),i.reverse()),n.push(e.valueInds[0]),i.push(r.valueInds[0]),t.bundlecolors&&(n.unshift(e.rawColor),i.unshift(r.rawColor)),ni?1:0}));for(var h=new Array(c.length),p=e[0].model.count,d=e[0].categories.map((function(t){return t.height})).reduce((function(t,e){return t+e})),g=0;g0?d*(v.count/p):0;for(var y,x=new Array(n.length),b=0;b1?(t.width-80-16)/(n-1):0)*i;var a,o,s,l,c,u=[],f=t.model.maxCats,h=e.categories.length,p=e.count,d=t.height-8*(f-1),g=8*(f-h)/2,m=e.categories.map((function(t){return{displayInd:t.displayInd,categoryInd:t.categoryInd}}));for(m.sort((function(t,e){return t.displayInd-e.displayInd})),c=0;c0?o.count/p*d:0,s={key:o.valueInds[0],model:o,width:16,height:a,y:null!==o.dragY?o.dragY:g,bands:[],parcatsViewModel:t},g=g+a+8,u.push(s);return{key:e.dimensionInd,x:null!==e.dragX?e.dragX:r,y:0,width:16,model:e,categories:u,parcatsViewModel:t,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(t,e,r,n){f(r,t,n,e)}},{"../../components/drawing":665,"../../components/fx":683,"../../lib":778,"../../lib/svg_text_utils":803,"../../plot_api/plot_api":814,d3:169,tinycolor2:576}],1148:[function(t,e,r){"use strict";var n=t("./parcats");e.exports=function(t,e,r,i){var a=t._fullLayout,o=a._paper,s=a._size;n(t,o,e,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},r,i)}},{"./parcats":1147}],1149:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../../plots/cartesian/layout_attributes"),a=t("../../plots/font_attributes"),o=t("../../plots/domain").attributes,s=t("../../lib/extend").extendFlat,l=t("../../plot_api/plot_template").templatedArray;e.exports={domain:o({name:"parcoords",trace:!0,editType:"plot"}),labelangle:{valType:"angle",dflt:0,editType:"plot"},labelside:{valType:"enumerated",values:["top","bottom"],dflt:"top",editType:"plot"},labelfont:a({editType:"plot"}),tickfont:a({editType:"plot"}),rangefont:a({editType:"plot"}),dimensions:l("dimension",{label:{valType:"string",editType:"plot"},tickvals:s({},i.tickvals,{editType:"plot"}),ticktext:s({},i.ticktext,{editType:"plot"}),tickformat:s({},i.tickformat,{editType:"plot"}),visible:{valType:"boolean",dflt:!0,editType:"plot"},range:{valType:"info_array",items:[{valType:"number",editType:"plot"},{valType:"number",editType:"plot"}],editType:"plot"},constraintrange:{valType:"info_array",freeLength:!0,dimensions:"1-2",items:[{valType:"number",editType:"plot"},{valType:"number",editType:"plot"}],editType:"plot"},multiselect:{valType:"boolean",dflt:!0,editType:"plot"},values:{valType:"data_array",editType:"calc"},editType:"calc"}),line:s({editType:"calc"},n("line",{colorscaleDflt:"Viridis",autoColorDflt:!1,editTypeOverride:"calc"}))}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/plot_template":817,"../../plots/cartesian/layout_attributes":842,"../../plots/domain":855,"../../plots/font_attributes":856}],1150:[function(t,e,r){"use strict";var n=t("./constants"),i=t("d3"),a=t("../../lib/gup").keyFun,o=t("../../lib/gup").repeat,s=t("../../lib").sorterAsc,l=t("../../lib").strTranslate,c=n.bar.snapRatio;function u(t,e){return t*(1-c)+e*c}var f=n.bar.snapClose;function h(t,e){return t*(1-f)+e*f}function p(t,e,r,n){if(function(t,e){for(var r=0;r=e[r][0]&&t<=e[r][1])return!0;return!1}(r,n))return r;var i=t?-1:1,a=0,o=e.length-1;if(i<0){var s=a;a=o,o=s}for(var l=e[a],c=l,f=a;i*fe){h=r;break}}if(a=u,isNaN(a)&&(a=isNaN(f)||isNaN(h)?isNaN(f)?h:f:e-c[f][1]t[1]+r||e=.9*t[1]+.1*t[0]?"n":e<=.9*t[0]+.1*t[1]?"s":"ns"}(d,e);g&&(o.interval=l[a],o.intervalPix=d,o.region=g)}}if(t.ordinal&&!o.region){var m=t.unitTickvals,y=t.unitToPaddedPx.invert(e);for(r=0;r=x[0]&&y<=x[1]){o.clickableOrdinalRange=x;break}}}return o}function w(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.brush.svgBrush;a.wasDragged=!0,a._dragging=!0,a.grabbingBar?a.newExtent=[r-a.grabPoint,r+a.barLength-a.grabPoint].map(e.unitToPaddedPx.invert):a.newExtent=[a.startExtent,e.unitToPaddedPx.invert(r)].sort(s),e.brush.filterSpecified=!0,a.extent=a.stayingIntervals.concat([a.newExtent]),a.brushCallback(e),b(t.parentNode)}function T(t,e){var r=_(e,e.height-i.mouse(t)[1]-2*n.verticalPadding),a="crosshair";r.clickableOrdinalRange?a="pointer":r.region&&(a=r.region+"-resize"),i.select(document.body).style("cursor",a)}function k(t){t.on("mousemove",(function(t){i.event.preventDefault(),t.parent.inBrushDrag||T(this,t)})).on("mouseleave",(function(t){t.parent.inBrushDrag||y()})).call(i.behavior.drag().on("dragstart",(function(t){!function(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.unitToPaddedPx.invert(r),o=e.brush,s=_(e,r),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar="ns"===s.region,c.grabbingBar){var u=l.map(e.unitToPaddedPx);c.grabPoint=r-u[0]-n.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=e.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter((function(t){return t[0]!==l[0]&&t[1]!==l[1]}))),c.startExtent=s.region?l["s"===s.region?1:0]:a,e.parent.inBrushDrag=!0,c.brushStartCallback()}(this,t)})).on("drag",(function(t){w(this,t)})).on("dragend",(function(t){!function(t,e){var r=e.brush,n=r.filter,a=r.svgBrush;a._dragging||(T(t,e),w(t,e),e.brush.svgBrush.wasDragged=!1),a._dragging=!1,i.event.sourceEvent.stopPropagation();var o=a.grabbingBar;if(a.grabbingBar=!1,a.grabLocation=void 0,e.parent.inBrushDrag=!1,y(),!a.wasDragged)return a.wasDragged=void 0,a.clickableOrdinalRange?r.filterSpecified&&e.multiselect?a.extent.push(a.clickableOrdinalRange):(a.extent=[a.clickableOrdinalRange],r.filterSpecified=!0):o?(a.extent=a.stayingIntervals,0===a.extent.length&&A(r)):A(r),a.brushCallback(e),b(t.parentNode),void a.brushEndCallback(r.filterSpecified?n.getConsolidated():[]);var s=function(){n.set(n.getConsolidated())};if(e.ordinal){var l=e.unitTickvals;l[l.length-1]a.newExtent[0];a.extent=a.stayingIntervals.concat(c?[a.newExtent]:[]),a.extent.length||A(r),a.brushCallback(e),c?b(t.parentNode,s):(s(),b(t.parentNode))}else s();a.brushEndCallback(r.filterSpecified?n.getConsolidated():[])}(this,t)})))}function M(t,e){return t[0]-e[0]}function A(t){t.filterSpecified=!1,t.svgBrush.extent=[[-1/0,1/0]]}function S(t){for(var e,r=t.slice(),n=[],i=r.shift();i;){for(e=i.slice();(i=r.shift())&&i[0]<=e[1];)e[1]=Math.max(e[1],i[1]);n.push(e)}return 1===n.length&&n[0][0]>n[0][1]&&(n=[]),n}e.exports={makeBrush:function(t,e,r,n,i,a){var o,l=function(){var t,e,r=[];return{set:function(n){1===(r=n.map((function(t){return t.slice().sort(s)})).sort(M)).length&&r[0][0]===-1/0&&r[0][1]===1/0&&(r=[[0,-1]]),t=S(r),e=r.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0])},get:function(){return r.slice()},getConsolidated:function(){return t},getBounds:function(){return e}}}();return l.set(r),{filter:l,filterSpecified:e,svgBrush:{extent:[],brushStartCallback:n,brushCallback:(o=i,function(t){var e=t.brush,r=function(t){return t.svgBrush.extent.map((function(t){return t.slice()}))}(e).slice();e.filter.set(r),o()}),brushEndCallback:a}}},ensureAxisBrush:function(t){var e=t.selectAll("."+n.cn.axisBrush).data(o,a);e.enter().append("g").classed(n.cn.axisBrush,!0),function(t){var e=t.selectAll(".background").data(o);e.enter().append("rect").classed("background",!0).call(d).call(g).style("pointer-events","auto").attr("transform",l(0,n.verticalPadding)),e.call(k).attr("height",(function(t){return t.height-n.verticalPadding}));var r=t.selectAll(".highlight-shadow").data(o);r.enter().append("line").classed("highlight-shadow",!0).attr("x",-n.bar.width/2).attr("stroke-width",n.bar.width+n.bar.strokeWidth).attr("stroke",n.bar.strokeColor).attr("opacity",n.bar.strokeOpacity).attr("stroke-linecap","butt"),r.attr("y1",(function(t){return t.height})).call(x);var i=t.selectAll(".highlight").data(o);i.enter().append("line").classed("highlight",!0).attr("x",-n.bar.width/2).attr("stroke-width",n.bar.width-n.bar.strokeWidth).attr("stroke",n.bar.fillColor).attr("opacity",n.bar.fillOpacity).attr("stroke-linecap","butt"),i.attr("y1",(function(t){return t.height})).call(x)}(e)},cleanRanges:function(t,e){if(Array.isArray(t[0])?(t=t.map((function(t){return t.sort(s)})),t=e.multiselect?S(t.sort(M)):[t[0]]):t=[t.sort(s)],e.tickvals){var r=e.tickvals.slice().sort(s);if(!(t=t.map((function(t){var e=[p(0,r,t[0],[]),p(1,r,t[1],[])];if(e[1]>e[0])return e})).filter((function(t){return t}))).length)return}return t.length>1?t:t[0]}}},{"../../lib":778,"../../lib/gup":775,"./constants":1153,d3:169}],1151:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../plots/get_data").getModuleCalcData,a=t("./plot"),o=t("../../constants/xmlns_namespaces");r.name="parcoords",r.plot=function(t){var e=i(t.calcdata,"parcoords")[0];e.length&&a(t,e)},r.clean=function(t,e,r,n){var i=n._has&&n._has("parcoords"),a=e._has&&e._has("parcoords");i&&!a&&(n._paperdiv.selectAll(".parcoords").remove(),n._glimages.selectAll("*").remove())},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(".svg-container");r.filter((function(t,e){return e===r.size()-1})).selectAll(".gl-canvas-context, .gl-canvas-focus").each((function(){var t=this.toDataURL("image/png");e.append("svg:image").attr({xmlns:o.svg,"xlink:href":t,preserveAspectRatio:"none",x:0,y:0,width:this.width,height:this.height})})),window.setTimeout((function(){n.selectAll("#filterBarPattern").attr("id","filterBarPattern")}),60)}},{"../../constants/xmlns_namespaces":754,"../../plots/get_data":865,"./plot":1160,d3:169}],1152:[function(t,e,r){"use strict";var n=t("../../lib").isArrayOrTypedArray,i=t("../../components/colorscale"),a=t("../../lib/gup").wrap;e.exports=function(t,e){var r,o;return i.hasColorscale(e,"line")&&n(e.line.color)?(r=e.line.color,o=i.extractOpts(e.line).colorscale,i.calc(t,e,{vals:r,containerStr:"line",cLetter:"c"})):(r=function(t){for(var e=new Array(t),r=0;rf&&(n.log("parcoords traces support up to "+f+" dimensions at the moment"),d.splice(f));var g=s(t,e,{name:"dimensions",layout:l,handleItemDefaults:p}),m=function(t,e,r,o,s){var l=s("line.color",r);if(i(t,"line")&&n.isArrayOrTypedArray(l)){if(l.length)return s("line.colorscale"),a(t,e,o,s,{prefix:"line.",cLetter:"c"}),l.length;e.line.color=r}return 1/0}(t,e,r,l,u);o(e,l,u),Array.isArray(g)&&g.length||(e.visible=!1),h(e,g,"values",m);var v={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};n.coerceFont(u,"labelfont",v),n.coerceFont(u,"tickfont",v),n.coerceFont(u,"rangefont",v),u("labelangle"),u("labelside")}},{"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"../../lib":778,"../../plots/array_container_defaults":823,"../../plots/cartesian/axes":828,"../../plots/domain":855,"./attributes":1149,"./axisbrush":1150,"./constants":1153,"./merge_length":1158}],1155:[function(t,e,r){"use strict";var n=t("../../lib").isTypedArray;r.convertTypedArray=function(t){return n(t)?Array.prototype.slice.call(t):t},r.isOrdinal=function(t){return!!t.tickvals},r.isVisible=function(t){return t.visible||!("visible"in t)}},{"../../lib":778}],1156:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),colorbar:{container:"line",min:"cmin",max:"cmax"},moduleType:"trace",name:"parcoords",basePlotModule:t("./base_plot"),categories:["gl","regl","noOpacity","noHover"],meta:{}}},{"./attributes":1149,"./base_plot":1151,"./calc":1152,"./defaults":1154,"./plot":1160}],1157:[function(t,e,r){"use strict";var n=t("glslify"),i=n(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\n p17_20, p21_24, p25_28, p29_32,\n p33_36, p37_40, p41_44, p45_48,\n p49_52, p53_56, p57_60, colors;\n\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\n loA, hiA, loB, hiB, loC, hiC, loD, hiD;\n\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\nuniform sampler2D mask, palette;\nuniform float maskHeight;\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\nuniform vec4 contextColor;\n\nbool isPick = (drwLayer > 1.5);\nbool isContext = (drwLayer < 0.5);\n\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\n\nfloat val(mat4 p, mat4 v) {\n return dot(matrixCompMult(p, v) * UNITS, UNITS);\n}\n\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\n float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\n float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\n return y1 * (1.0 - ratio) + y2 * ratio;\n}\n\nint iMod(int a, int b) {\n return a - b * (a / b);\n}\n\nbool fOutside(float p, float lo, float hi) {\n return (lo < hi) && (lo > p || p > hi);\n}\n\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\n return (\n fOutside(p[0], lo[0], hi[0]) ||\n fOutside(p[1], lo[1], hi[1]) ||\n fOutside(p[2], lo[2], hi[2]) ||\n fOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\n return (\n vOutside(p[0], lo[0], hi[0]) ||\n vOutside(p[1], lo[1], hi[1]) ||\n vOutside(p[2], lo[2], hi[2]) ||\n vOutside(p[3], lo[3], hi[3])\n );\n}\n\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\n return mOutside(A, loA, hiA) ||\n mOutside(B, loB, hiB) ||\n mOutside(C, loC, hiC) ||\n mOutside(D, loD, hiD);\n}\n\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\n mat4 pnts[4];\n pnts[0] = A;\n pnts[1] = B;\n pnts[2] = C;\n pnts[3] = D;\n\n for(int i = 0; i < 4; ++i) {\n for(int j = 0; j < 4; ++j) {\n for(int k = 0; k < 4; ++k) {\n if(0 == iMod(\n int(255.0 * texture2D(mask,\n vec2(\n (float(i * 2 + j / 2) + 0.5) / 8.0,\n (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\n ))[3]\n ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\n 2\n )) return true;\n }\n }\n }\n return false;\n}\n\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\n float x = 0.5 * sign(v) + 0.5;\n float y = axisY(x, A, B, C, D);\n float z = 1.0 - abs(v);\n\n z += isContext ? 0.0 : 2.0 * float(\n outsideBoundingBox(A, B, C, D) ||\n outsideRasterMask(A, B, C, D)\n );\n\n return vec4(\n 2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\n z,\n 1.0\n );\n}\n\nvoid main() {\n mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\n mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\n mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\n mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\n\n float v = colors[3];\n\n gl_Position = position(isContext, v, A, B, C, D);\n\n fragColor =\n isContext ? vec4(contextColor) :\n isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\n}\n"]),a=n(["precision highp float;\n#define GLSLIFY 1\n\nvarying vec4 fragColor;\n\nvoid main() {\n gl_FragColor = fragColor;\n}\n"]),o=t("./constants").maxDimensionCount,s=t("../../lib"),l=new Uint8Array(4),c=new Uint8Array(4),u={shape:[256,1],format:"rgba",type:"uint8",mag:"nearest",min:"nearest"};function f(t,e,r,n,i){var a=t._gl;a.enable(a.SCISSOR_TEST),a.scissor(e,r,n,i),t.clear({color:[0,0,0,0],depth:1})}function h(t,e,r,n,i,a){var o=a.key;r.drawCompleted||(!function(t){t.read({x:0,y:0,width:1,height:1,data:l})}(t),r.drawCompleted=!0),function s(l){var c=Math.min(n,i-l*n);0===l&&(window.cancelAnimationFrame(r.currentRafs[o]),delete r.currentRafs[o],f(t,a.scissorX,a.scissorY,a.scissorWidth,a.viewBoxSize[1])),r.clearOnly||(a.count=2*c,a.offset=2*l*n,e(a),l*n+c>>8*e)%256/255}function g(t,e,r){for(var n=new Array(8*e),i=0,a=0;au&&(u=t[i].dim1.canvasX,o=i);0===s&&f(T,0,0,r.canvasWidth,r.canvasHeight);var p=function(t){var e,r,n,i=[[],[]];for(n=0;n<64;n++){var a=!t&&n<l.length?l[n].brush.filter.getBounds():[-1/0,1/0];i[0][n]=a[0],i[1][n]=a[1]}var o=new Array(16384);for(e=0;e<16384;e++)o[e]=255;if(!t)for(e=0;e<l.length;e++){var s=e%8,c=(e-s)/8,u=Math.pow(2,s),f=l[e].brush.filter.get();if(!(f.length<2)){var h=x(f[0])[1];for(r=1;r<f.length;r++){var p=x(f[r]);for(n=h+1;n<p[0];n++)o[8*n+c]&=~u;h=Math.max(h,p[1])}}}var d={shape:[8,2048],format:"alpha",type:"uint8",mag:"nearest",min:"nearest",data:o};return b?b(d):b=T.texture(d),{maskTexture:b,maskHeight:2048,loA:i[0].slice(0,16),loB:i[0].slice(16,32),loC:i[0].slice(32,48),loD:i[0].slice(48,64),hiA:i[1].slice(0,16),hiB:i[1].slice(16,32),hiC:i[1].slice(32,48),hiD:i[1].slice(48,64)}}(_);for(i=0;i<s;i++){var d=t[i],g=d.dim0.crossfilterDimensionIndex,v=d.dim1.crossfilterDimensionIndex,M=d.canvasX,A=d.canvasY,C=M+d.panelSizeX;if(e||!S[g]||S[g][0]!==M||S[g][1]!==C){S[g]=[M,C];var L=y(r,a,o,i,g,v,M,A,d.panelSizeX,d.panelSizeY,d.dim0.crossfilterDimensionIndex,_?0:w?2:1,p);k.clearOnly=n;var I=e?r.lines.blockLineCount:m;h(T,E,k,I,m,L)}}},readPixel:function(t,e){return T.read({x:t,y:e,width:1,height:1,data:c}),c},readPixels:function(t,e,r,n){var i=new Uint8Array(4*r*n);return T.read({x:t,y:e,width:r,height:n,data:i}),i},destroy:function(){for(var e in t.style["pointer-events"]="none",A.destroy(),b&&b.destroy(),M)M[e].destroy()},update:C}}},{"../../lib":778,"./constants":1153,glslify:439}],1158:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){var i,a;for(n||(n=1/0),i=0;i<e.length;i++)(a=e[i]).visible&&(n=Math.min(n,a[r].length));for(n===1/0&&(n=0),t._length=n,i=0;i<e.length;i++)(a=e[i]).visible&&(a._length=n);return n}},{}],1159:[function(t,e,r){"use strict";var n=t("d3"),i=t("color-rgba"),a=t("../../plots/cartesian/axes"),o=t("../../lib"),s=o.strRotate,l=o.strTranslate,c=t("../../lib/svg_text_utils"),u=t("../../components/drawing"),f=t("../../components/colorscale"),h=t("../../lib/gup"),p=h.keyFun,d=h.repeat,g=h.unwrap,m=t("./helpers"),v=t("./constants"),y=t("./axisbrush"),x=t("./lines");function b(t,e,r){return o.aggNums(t,null,e,r)}function _(t,e){return T(b(Math.min,t,e),b(Math.max,t,e))}function w(t){var e=t.range;return e?T(e[0],e[1]):_(t.values,t._length)}function T(t,e){return!isNaN(t)&&isFinite(t)||(t=0),!isNaN(e)&&isFinite(e)||(e=0),t===e&&(0===t?(t-=1,e+=1):(t*=.9,e*=1.1)),[t,e]}function k(t,e,r,i,a){var o,s,l=w(r);return i?n.scale.ordinal().domain(i.map((o=n.format(r.tickformat),s=a,s?function(t,e){var r=s[e];return null==r?o(t):r}:o))).range(i.map((function(r){var n=(r-l[0])/(l[1]-l[0]);return t-e+n*(2*e-t)}))):n.scale.linear().domain(l).range([t-e,e])}function M(t){if(t.tickvals){var e=w(t);return n.scale.ordinal().domain(t.tickvals).range(t.tickvals.map((function(t){return(t-e[0])/(e[1]-e[0])})))}}function A(t){var e=t.map((function(t){return t[0]})),r=t.map((function(t){var e=i(t[1]);return n.rgb("rgb("+e[0]+","+e[1]+","+e[2]+")")})),a="rgb".split("").map((function(t){return n.scale.linear().clamp(!0).domain(e).range(r.map((i=t,function(t){return t[i]})));var i}));return function(t){return a.map((function(e){return e(t)}))}}function S(t){return t.dimensions.some((function(t){return t.brush.filterSpecified}))}function E(t,e,r){var a=g(e),s=a.trace,l=m.convertTypedArray(a.lineColor),c=s.line,u={color:i(v.deselectedLineColor)},h=f.extractOpts(c),p=h.reversescale?f.flipScale(a.cscale):a.cscale,d=s.domain,y=s.dimensions,x=t.width,b=s.labelangle,_=s.labelside,T=s.labelfont,k=s.tickfont,M=s.rangefont,S=o.extendDeepNoArrays({},c,{color:l.map(n.scale.linear().domain(w({values:l,range:[h.min,h.max],_length:s._length}))),blockLineCount:v.blockLineCount,canvasOverdrag:v.overdrag*v.canvasPixelRatio}),E=Math.floor(x*(d.x[1]-d.x[0])),C=Math.floor(t.height*(d.y[1]-d.y[0])),L=t.margin||{l:80,r:80,t:100,b:80},I=E,P=C;return{key:r,colCount:y.filter(m.isVisible).length,dimensions:y,tickDistance:v.tickDistance,unitToColor:A(p),lines:S,deselectedLines:u,labelAngle:b,labelSide:_,labelFont:T,tickFont:k,rangeFont:M,layoutWidth:x,layoutHeight:t.height,domain:d,translateX:d.x[0]*x,translateY:t.height-d.y[1]*t.height,pad:L,canvasWidth:I*v.canvasPixelRatio+2*S.canvasOverdrag,canvasHeight:P*v.canvasPixelRatio,width:I,height:P,canvasPixelRatio:v.canvasPixelRatio}}function C(t,e,r){var i=r.width,a=r.height,s=r.dimensions,l=r.canvasPixelRatio,c=function(t){return i*t/Math.max(1,r.colCount-1)},u=v.verticalPadding/a,f=function(t,e){return n.scale.linear().range([e,t-e])}(a,v.verticalPadding),h={key:r.key,xScale:c,model:r,inBrushDrag:!1},p={};return h.dimensions=s.filter(m.isVisible).map((function(i,s){var d=function(t,e){return n.scale.linear().domain(w(t)).range([e,1-e])}(i,u),g=p[i.label];p[i.label]=(g||0)+1;var x=i.label+(g?"__"+g:""),b=i.constraintrange,_=b&&b.length;_&&!Array.isArray(b[0])&&(b=[b]);var T=_?b.map((function(t){return t.map(d)})):[[-1/0,1/0]],A=i.values;A.length>i._length&&(A=A.slice(0,i._length));var E,C=i.tickvals;function L(t,e){return{val:t,text:E[e]}}function I(t,e){return t.val-e.val}if(Array.isArray(C)&&C.length){E=i.ticktext,Array.isArray(E)&&E.length?E.length>C.length?E=E.slice(0,C.length):C.length>E.length&&(C=C.slice(0,E.length)):E=C.map(n.format(i.tickformat));for(var P=1;P=r||l>=a)return;var c=t.lineLayer.readPixel(s,a-1-l),u=0!==c[3],f=u?c[2]+256*(c[1]+256*c[0]):null,h={x:s,y:l,clientX:e.clientX,clientY:e.clientY,dataIndex:t.model.key,curveNumber:f};f!==R&&(u?i.hover(h):i.unhover&&i.unhover(h),R=f)}})),D.style("opacity",(function(t){return t.pick?0:1})),h.style("background","rgba(255, 255, 255, 0)");var F=h.selectAll("."+v.cn.parcoords).data(A,p);F.exit().remove(),F.enter().append("g").classed(v.cn.parcoords,!0).style("shape-rendering","crispEdges").style("pointer-events","none"),F.attr("transform",(function(t){return l(t.model.translateX,t.model.translateY)}));var B=F.selectAll("."+v.cn.parcoordsControlView).data(d,p);B.enter().append("g").classed(v.cn.parcoordsControlView,!0),B.attr("transform",(function(t){return l(t.model.pad.l,t.model.pad.t)}));var N=B.selectAll("."+v.cn.yAxis).data((function(t){return t.dimensions}),p);N.enter().append("g").classed(v.cn.yAxis,!0),B.each((function(t){P(N,t)})),D.each((function(t){if(t.viewModel){!t.lineLayer||i?t.lineLayer=x(this,t):t.lineLayer.update(t),(t.key||0===t.key)&&(t.viewModel[t.key]=t.lineLayer);var e=!t.context||i;t.lineLayer.render(t.viewModel.panels,e)}})),N.attr("transform",(function(t){return l(t.xScale(t.xIndex),0)})),N.call(n.behavior.drag().origin((function(t){return t})).on("drag",(function(t){var e=t.parent;M.linePickActive(!1),t.x=Math.max(-v.overdrag,Math.min(t.model.width+v.overdrag,n.event.x)),t.canvasX=t.x*t.model.canvasPixelRatio,N.sort((function(t,e){return t.x-e.x})).each((function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio})),P(N,e),N.filter((function(e){return 0!==Math.abs(t.xIndex-e.xIndex)})).attr("transform",(function(t){return l(t.xScale(t.xIndex),0)})),n.select(this).attr("transform",l(t.x,0)),N.each((function(r,n,i){i===t.parent.key&&(e.dimensions[n]=r)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!S(e)),e.focusLayer.render&&e.focusLayer.render(e.panels)})).on("dragend",(function(t){var e=t.parent;t.x=t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio,P(N,e),n.select(this).attr("transform",(function(t){return l(t.x,0)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!S(e)),e.focusLayer&&e.focusLayer.render(e.panels),e.pickLayer&&e.pickLayer.render(e.panels,!0),M.linePickActive(!0),i&&i.axesMoved&&i.axesMoved(e.key,e.dimensions.map((function(t){return t.crossfilterDimensionIndex})))}))),N.exit().remove();var j=N.selectAll("."+v.cn.axisOverlays).data(d,p);j.enter().append("g").classed(v.cn.axisOverlays,!0),j.selectAll("."+v.cn.axis).remove();var U=j.selectAll("."+v.cn.axis).data(d,p);U.enter().append("g").classed(v.cn.axis,!0),U.each((function(t){var e=t.model.height/t.model.tickDistance,r=t.domainScale,i=r.domain();n.select(this).call(n.svg.axis().orient("left").tickSize(4).outerTickSize(2).ticks(e,t.tickFormat).tickValues(t.ordinal?i:null).tickFormat((function(e){return m.isOrdinal(t)?e:z(t.model.dimensions[t.visibleIndex],e)})).scale(r)),u.font(U.selectAll("text"),t.model.tickFont)})),U.selectAll(".domain, .tick>line").attr("fill","none").attr("stroke","black").attr("stroke-opacity",.25).attr("stroke-width","1px"),U.selectAll("text").style("text-shadow","1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff").style("cursor","default");var V=j.selectAll("."+v.cn.axisHeading).data(d,p);V.enter().append("g").classed(v.cn.axisHeading,!0);var q=V.selectAll("."+v.cn.axisTitle).data(d,p);q.enter().append("text").classed(v.cn.axisTitle,!0).attr("text-anchor","middle").style("cursor","ew-resize").style("pointer-events","auto"),q.text((function(t){return t.label})).each((function(e){var r=n.select(this);u.font(r,e.model.labelFont),c.convertToTspans(r,t)})).attr("transform",(function(t){var e=I(t.model.labelAngle,t.model.labelSide),r=v.axisTitleOffset;return(e.dir>0?"":l(0,2*r+t.model.height))+s(e.degrees)+l(-r*e.dx,-r*e.dy)})).attr("text-anchor",(function(t){var e=I(t.model.labelAngle,t.model.labelSide);return 2*Math.abs(e.dx)>Math.abs(e.dy)?e.dir*e.dx<0?"start":"end":"middle"}));var H=j.selectAll("."+v.cn.axisExtent).data(d,p);H.enter().append("g").classed(v.cn.axisExtent,!0);var G=H.selectAll("."+v.cn.axisExtentTop).data(d,p);G.enter().append("g").classed(v.cn.axisExtentTop,!0),G.attr("transform",l(0,-v.axisExtentOffset));var Y=G.selectAll("."+v.cn.axisExtentTopText).data(d,p);Y.enter().append("text").classed(v.cn.axisExtentTopText,!0).call(L),Y.text((function(t){return O(t,!0)})).each((function(t){u.font(n.select(this),t.model.rangeFont)}));var W=H.selectAll("."+v.cn.axisExtentBottom).data(d,p);W.enter().append("g").classed(v.cn.axisExtentBottom,!0),W.attr("transform",(function(t){return l(0,t.model.height+v.axisExtentOffset)}));var X=W.selectAll("."+v.cn.axisExtentBottomText).data(d,p);X.enter().append("text").classed(v.cn.axisExtentBottomText,!0).attr("dy","0.75em").call(L),X.text((function(t){return O(t,!1)})).each((function(t){u.font(n.select(this),t.model.rangeFont)})),y.ensureAxisBrush(j)}},{"../../components/colorscale":655,"../../components/drawing":665,"../../lib":778,"../../lib/gup":775,"../../lib/svg_text_utils":803,"../../plots/cartesian/axes":828,"./axisbrush":1150,"./constants":1153,"./helpers":1155,"./lines":1157,"color-rgba":127,d3:169}],1160:[function(t,e,r){"use strict";var n=t("./parcoords"),i=t("../../lib/prepare_regl"),a=t("./helpers").isVisible;function o(t,e,r){var n=e.indexOf(r),i=t.indexOf(n);return-1===i&&(i+=e.length),i}e.exports=function(t,e){var r=t._fullLayout;if(i(t)){var s={},l={},c={},u={},f=r._size;e.forEach((function(e,r){var n=e[0].trace;c[r]=n.index;var i=u[r]=n._fullInput.index;s[r]=t.data[i].dimensions,l[r]=t.data[i].dimensions.slice()}));n(t,e,{width:f.w,height:f.h,margin:{t:f.t,r:f.r,b:f.b,l:f.l}},{filterChanged:function(e,n,i){var a=l[e][n],o=i.map((function(t){return t.slice()})),s="dimensions["+n+"].constraintrange",f=r._tracePreGUI[t._fullData[c[e]]._fullInput.uid];if(void 0===f[s]){var h=a.constraintrange;f[s]=h||null}var p=t._fullData[c[e]].dimensions[n];o.length?(1===o.length&&(o=o[0]),a.constraintrange=o,p.constraintrange=o.slice(),o=[o]):(delete a.constraintrange,delete p.constraintrange,o=null);var d={};d[s]=o,t.emit("plotly_restyle",[d,[u[e]]])},hover:function(e){t.emit("plotly_hover",e)},unhover:function(e){t.emit("plotly_unhover",e)},axesMoved:function(e,r){var n=function(t,e){return function(r,n){return o(t,e,r)-o(t,e,n)}}(r,l[e].filter(a));s[e].sort(n),l[e].filter((function(t){return!a(t)})).sort((function(t){return l[e].indexOf(t)})).forEach((function(t){s[e].splice(s[e].indexOf(t),1),s[e].splice(l[e].indexOf(t),0,t)})),t.emit("plotly_restyle",[{dimensions:[s[e]]},[u[e]]])}})}}},{"../../lib/prepare_regl":791,"./helpers":1155,"./parcoords":1159}],1161:[function(t,e,r){"use strict";var n=t("../../plots/attributes"),i=t("../../plots/domain").attributes,a=t("../../plots/font_attributes"),o=t("../../components/color/attributes"),s=t("../../plots/template_attributes").hovertemplateAttrs,l=t("../../plots/template_attributes").texttemplateAttrs,c=t("../../lib/extend").extendFlat,u=a({editType:"plot",arrayOk:!0,colorEditType:"plot"});e.exports={labels:{valType:"data_array",editType:"calc"},label0:{valType:"number",dflt:0,editType:"calc"},dlabel:{valType:"number",dflt:1,editType:"calc"},values:{valType:"data_array",editType:"calc"},marker:{colors:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:o.defaultLine,arrayOk:!0,editType:"style"},width:{valType:"number",min:0,dflt:0,arrayOk:!0,editType:"style"},editType:"calc"},editType:"calc"},text:{valType:"data_array",editType:"plot"},hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"style"},scalegroup:{valType:"string",dflt:"",editType:"calc"},textinfo:{valType:"flaglist",flags:["label","text","value","percent"],extras:["none"],editType:"calc"},hoverinfo:c({},n.hoverinfo,{flags:["label","text","value","percent","name"]}),hovertemplate:s({},{keys:["label","color","value","percent","text"]}),texttemplate:l({editType:"plot"},{keys:["label","color","value","percent","text"]}),textposition:{valType:"enumerated",values:["inside","outside","auto","none"],dflt:"auto",arrayOk:!0,editType:"plot"},textfont:c({},u,{}),insidetextorientation:{valType:"enumerated",values:["horizontal","radial","tangential","auto"],dflt:"auto",editType:"plot"},insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),automargin:{valType:"boolean",dflt:!1,editType:"plot"},title:{text:{valType:"string",dflt:"",editType:"plot"},font:c({},u,{}),position:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"plot"},editType:"plot"},domain:i({name:"pie",trace:!0,editType:"calc"}),hole:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},sort:{valType:"boolean",dflt:!0,editType:"calc"},direction:{valType:"enumerated",values:["clockwise","counterclockwise"],dflt:"counterclockwise",editType:"calc"},rotation:{valType:"number",min:-360,max:360,dflt:0,editType:"calc"},pull:{valType:"number",min:0,max:1,dflt:0,arrayOk:!0,editType:"calc"},_deprecated:{title:{valType:"string",dflt:"",editType:"calc"},titlefont:c({},u,{}),titleposition:{valType:"enumerated",values:["top left","top center","top right","middle center","bottom left","bottom center","bottom right"],editType:"calc"}}}},{"../../components/color/attributes":642,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/domain":855,"../../plots/font_attributes":856,"../../plots/template_attributes":906}],1162:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="pie",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":891}],1163:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("tinycolor2"),a=t("../../components/color"),o={};function s(t){return function(e,r){return!!e&&(!!(e=i(e)).isValid()&&(e=a.addOpacity(e,e.getAlpha()),t[r]||(t[r]=e),e))}}function l(t,e){var r,n=JSON.stringify(t),a=e[n];if(!a){for(a=t.slice(),r=0;r0){s=!0;break}}s||(o=0)}return{hasLabels:r,hasValues:a,len:o}}e.exports={handleLabelsAndValues:l,supplyDefaults:function(t,e,r,n){function c(r,n){return i.coerce(t,e,a,r,n)}var u=l(c("labels"),c("values")),f=u.len;if(e._hasLabels=u.hasLabels,e._hasValues=u.hasValues,!e._hasLabels&&e._hasValues&&(c("label0"),c("dlabel")),f){e._length=f,c("marker.line.width")&&c("marker.line.color"),c("marker.colors"),c("scalegroup");var h,p=c("text"),d=c("texttemplate");if(d||(h=c("textinfo",Array.isArray(p)?"text+percent":"percent")),c("hovertext"),c("hovertemplate"),d||h&&"none"!==h){var g=c("textposition");s(t,e,n,c,g,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),(Array.isArray(g)||"auto"===g||"outside"===g)&&c("automargin"),("inside"===g||"auto"===g||Array.isArray(g))&&c("insidetextorientation")}o(e,n,c);var m=c("hole");if(c("title.text")){var v=c("title.position",m?"middle center":"top center");m||"middle center"!==v||(e.title.position="top center"),i.coerceFont(c,"title.font",n.font)}c("sort"),c("direction"),c("rotation"),c("pull")}else e.visible=!1}}},{"../../lib":778,"../../plots/domain":855,"../bar/defaults":925,"./attributes":1161,"fast-isnumeric":241}],1165:[function(t,e,r){"use strict";var n=t("../../components/fx/helpers").appendArrayMultiPointValues;e.exports=function(t,e){var r={curveNumber:e.index,pointNumbers:t.pts,data:e._input,fullData:e,label:t.label,color:t.color,value:t.v,percent:t.percent,text:t.text,v:t.v};return 1===t.pts.length&&(r.pointNumber=r.i=t.pts[0]),n(r,e,t.pts),"funnelarea"===e.type&&(delete r.v,delete r.i),r}},{"../../components/fx/helpers":679}],1166:[function(t,e,r){"use strict";var n=t("../../lib");function i(t){return-1!==t.indexOf("e")?t.replace(/[.]?0+e/,"e"):-1!==t.indexOf(".")?t.replace(/[.]?0+$/,""):t}r.formatPiePercent=function(t,e){var r=i((100*t).toPrecision(3));return n.numSeparate(r,e)+"%"},r.formatPieValue=function(t,e){var r=i(t.toPrecision(10));return n.numSeparate(r,e)},r.getFirstFilled=function(t,e){if(Array.isArray(t))for(var r=0;r"),name:u.hovertemplate||-1!==f.indexOf("name")?u.name:void 0,idealAlign:t.pxmid[0]<0?"left":"right",color:m.castOption(b.bgcolor,t.pts)||t.color,borderColor:m.castOption(b.bordercolor,t.pts),fontFamily:m.castOption(_.family,t.pts),fontSize:m.castOption(_.size,t.pts),fontColor:m.castOption(_.color,t.pts),nameLength:m.castOption(b.namelength,t.pts),textAlign:m.castOption(b.align,t.pts),hovertemplate:m.castOption(u.hovertemplate,t.pts),hovertemplateLabels:t,eventData:[v(t,u)]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:e}),o._hasHoverLabel=!0}o._hasHoverEvent=!0,e.emit("plotly_hover",{points:[v(t,u)],event:n.event})}})),t.on("mouseout",(function(t){var r=e._fullLayout,i=e._fullData[o.index],s=n.select(this).datum();o._hasHoverEvent&&(t.originalEvent=n.event,e.emit("plotly_unhover",{points:[v(s,i)],event:n.event}),o._hasHoverEvent=!1),o._hasHoverLabel&&(a.loneUnhover(r._hoverlayer.node()),o._hasHoverLabel=!1)})),t.on("click",(function(t){var r=e._fullLayout,i=e._fullData[o.index];e._dragging||!1===r.hovermode||(e._hoverdata=[v(t,i)],a.click(e,n.event))}))}function b(t,e,r){var n=m.castOption(t.insidetextfont.color,e.pts);!n&&t._input.textfont&&(n=m.castOption(t._input.textfont.color,e.pts));var i=m.castOption(t.insidetextfont.family,e.pts)||m.castOption(t.textfont.family,e.pts)||r.family,a=m.castOption(t.insidetextfont.size,e.pts)||m.castOption(t.textfont.size,e.pts)||r.size;return{color:n||o.contrast(e.color),family:i,size:a}}function _(t,e){for(var r,n,i=0;ie&&e>n||r=-4;m-=2)v(Math.PI*m,"tan");for(m=4;m>=-4;m-=2)v(Math.PI*(m+1),"tan")}if(f||p){for(m=4;m>=-4;m-=2)v(Math.PI*(m+1.5),"rad");for(m=4;m>=-4;m-=2)v(Math.PI*(m+.5),"rad")}}if(s||d||f){var y=Math.sqrt(t.width*t.width+t.height*t.height);if((a={scale:i*n*2/y,rCenter:1-i,rotate:0}).textPosAngle=(e.startangle+e.stopangle)/2,a.scale>=1)return a;g.push(a)}(d||p)&&((a=T(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,g.push(a)),(d||h)&&((a=k(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,g.push(a));for(var x=0,b=0,_=0;_=1)break}return g[x]}function T(t,e,r,n,i){e=Math.max(0,e-2*g);var a=t.width/t.height,o=S(a,n,e,r);return{scale:2*o/t.height,rCenter:M(a,o/e),rotate:A(i)}}function k(t,e,r,n,i){e=Math.max(0,e-2*g);var a=t.height/t.width,o=S(a,n,e,r);return{scale:2*o/t.width,rCenter:M(a,o/e),rotate:A(i+Math.PI/2)}}function M(t,e){return Math.cos(e)-t*e}function A(t){return(180/Math.PI*t+720)%180-90}function S(t,e,r,n){var i=t+1/(2*Math.tan(e));return r*Math.min(1/(Math.sqrt(i*i+.5)+i),n/(Math.sqrt(t*t+n/2)+t))}function E(t,e){return t.v!==e.vTotal||e.trace.hole?Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2):1}function C(t,e){var r=e.pxmid[0],n=e.pxmid[1],i=t.width/2,a=t.height/2;return r<0&&(i*=-1),n<0&&(a*=-1),{scale:1,rCenter:1,rotate:0,x:i+Math.abs(a)*(i>0?1:-1)/2,y:a/(1+r*r/(n*n)),outside:!0}}function L(t,e){var r,n,i,a=t.trace,o={x:t.cx,y:t.cy},s={tx:0,ty:0};s.ty+=a.title.font.size,i=P(a),-1!==a.title.position.indexOf("top")?(o.y-=(1+i)*t.r,s.ty-=t.titleBox.height):-1!==a.title.position.indexOf("bottom")&&(o.y+=(1+i)*t.r);var l,c,u=(l=t.r,c=t.trace.aspectratio,l/(void 0===c?1:c)),f=e.w*(a.domain.x[1]-a.domain.x[0])/2;return-1!==a.title.position.indexOf("left")?(f+=u,o.x-=(1+i)*u,s.tx+=t.titleBox.width/2):-1!==a.title.position.indexOf("center")?f*=2:-1!==a.title.position.indexOf("right")&&(f+=u,o.x+=(1+i)*u,s.tx-=t.titleBox.width/2),r=f/t.titleBox.width,n=I(t,e)/t.titleBox.height,{x:o.x,y:o.y,scale:Math.min(r,n),tx:s.tx,ty:s.ty}}function I(t,e){var r=t.trace,n=e.h*(r.domain.y[1]-r.domain.y[0]);return Math.min(t.titleBox.height,n/2)}function P(t){var e,r=t.pull;if(!r)return 0;if(Array.isArray(r))for(r=0,e=0;er&&(r=t.pull[e]);return r}function z(t,e){for(var r=[],n=0;n1?(c=r.r,u=c/i.aspectratio):(u=r.r,c=u*i.aspectratio),c*=(1+i.baseratio)/2,l=c*u}o=Math.min(o,l/r.vTotal)}for(n=0;n")}if(a){var x=l.castOption(i,e.i,"texttemplate");if(x){var b=function(t){return{label:t.label,value:t.v,valueLabel:m.formatPieValue(t.v,n.separators),percent:t.v/r.vTotal,percentLabel:m.formatPiePercent(t.v/r.vTotal,n.separators),color:t.color,text:t.text,customdata:l.castOption(i,t.i,"customdata")}}(e),_=m.getFirstFilled(i.text,e.pts);(y(_)||""===_)&&(b.text=_),e.text=l.texttemplateString(x,b,t._fullLayout._d3locale,b,i._meta||{})}else e.text=""}}function R(t,e){var r=t.rotate*Math.PI/180,n=Math.cos(r),i=Math.sin(r),a=(e.left+e.right)/2,o=(e.top+e.bottom)/2;t.textX=a*n-o*i,t.textY=a*i+o*n,t.noCenter=!0}e.exports={plot:function(t,e){var r=t._fullLayout,a=r._size;d("pie",r),_(e,t),z(e,a);var h=l.makeTraceGroups(r._pielayer,e,"trace").each((function(e){var h=n.select(this),d=e[0],g=d.trace;!function(t){var e,r,n,i=t[0],a=i.r,o=i.trace,s=m.getRotationAngle(o.rotation),l=2*Math.PI/i.vTotal,c="px0",u="px1";if("counterclockwise"===o.direction){for(e=0;ei.vTotal/2?1:0,r.halfangle=Math.PI*Math.min(r.v/i.vTotal,.5),r.ring=1-o.hole,r.rInscribed=E(r,i))}(e),h.attr("stroke-linejoin","round"),h.each((function(){var v=n.select(this).selectAll("g.slice").data(e);v.enter().append("g").classed("slice",!0),v.exit().remove();var y=[[[],[]],[[],[]]],_=!1;v.each((function(i,a){if(i.hidden)n.select(this).selectAll("path,g").remove();else{i.pointNumber=i.i,i.curveNumber=g.index,y[i.pxmid[1]<0?0:1][i.pxmid[0]<0?0:1].push(i);var o=d.cx,c=d.cy,u=n.select(this),h=u.selectAll("path.surface").data([i]);if(h.enter().append("path").classed("surface",!0).style({"pointer-events":"all"}),u.call(x,t,e),g.pull){var v=+m.castOption(g.pull,i.pts)||0;v>0&&(o+=v*i.pxmid[0],c+=v*i.pxmid[1])}i.cxFinal=o,i.cyFinal=c;var T=g.hole;if(i.v===d.vTotal){var k="M"+(o+i.px0[0])+","+(c+i.px0[1])+L(i.px0,i.pxmid,!0,1)+L(i.pxmid,i.px0,!0,1)+"Z";T?h.attr("d","M"+(o+T*i.px0[0])+","+(c+T*i.px0[1])+L(i.px0,i.pxmid,!1,T)+L(i.pxmid,i.px0,!1,T)+"Z"+k):h.attr("d",k)}else{var M=L(i.px0,i.px1,!0,1);if(T){var A=1-T;h.attr("d","M"+(o+T*i.px1[0])+","+(c+T*i.px1[1])+L(i.px1,i.px0,!1,T)+"l"+A*i.px0[0]+","+A*i.px0[1]+M+"Z")}else h.attr("d","M"+o+","+c+"l"+i.px0[0]+","+i.px0[1]+M+"Z")}D(t,i,d);var S=m.castOption(g.textposition,i.pts),E=u.selectAll("g.slicetext").data(i.text&&"none"!==S?[0]:[]);E.enter().append("g").classed("slicetext",!0),E.exit().remove(),E.each((function(){var u=l.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),h=l.ensureUniformFontSize(t,"outside"===S?function(t,e,r){var n=m.castOption(t.outsidetextfont.color,e.pts)||m.castOption(t.textfont.color,e.pts)||r.color,i=m.castOption(t.outsidetextfont.family,e.pts)||m.castOption(t.textfont.family,e.pts)||r.family,a=m.castOption(t.outsidetextfont.size,e.pts)||m.castOption(t.textfont.size,e.pts)||r.size;return{color:n,family:i,size:a}}(g,i,r.font):b(g,i,r.font));u.text(i.text).attr({class:"slicetext",transform:"","text-anchor":"middle"}).call(s.font,h).call(f.convertToTspans,t);var v,y=s.bBox(u.node());if("outside"===S)v=C(y,i);else if(v=w(y,i,d),"auto"===S&&v.scale<1){var x=l.ensureUniformFontSize(t,g.outsidetextfont);u.call(s.font,x),v=C(y=s.bBox(u.node()),i)}var T=v.textPosAngle,k=void 0===T?i.pxmid:O(d.r,T);if(v.targetX=o+k[0]*v.rCenter+(v.x||0),v.targetY=c+k[1]*v.rCenter+(v.y||0),R(v,y),v.outside){var M=v.targetY;i.yLabelMin=M-y.height/2,i.yLabelMid=M,i.yLabelMax=M+y.height/2,i.labelExtraX=0,i.labelExtraY=0,_=!0}v.fontSize=h.size,p(g.type,v,r),e[a].transform=v,u.attr("transform",l.getTextTransform(v))}))}function L(t,e,r,n){var a=n*(e[0]-t[0]),o=n*(e[1]-t[1]);return"a"+n*d.r+","+n*d.r+" 0 "+i.largeArc+(r?" 1 ":" 0 ")+a+","+o}}));var T=n.select(this).selectAll("g.titletext").data(g.title.text?[0]:[]);if(T.enter().append("g").classed("titletext",!0),T.exit().remove(),T.each((function(){var e,r=l.ensureSingle(n.select(this),"text","",(function(t){t.attr("data-notex",1)})),i=g.title.text;g._meta&&(i=l.templateString(i,g._meta)),r.text(i).attr({class:"titletext",transform:"","text-anchor":"middle"}).call(s.font,g.title.font).call(f.convertToTspans,t),e="middle center"===g.title.position?function(t){var e=Math.sqrt(t.titleBox.width*t.titleBox.width+t.titleBox.height*t.titleBox.height);return{x:t.cx,y:t.cy,scale:t.trace.hole*t.r*2/e,tx:0,ty:-t.titleBox.height/2+t.trace.title.font.size}}(d):L(d,a),r.attr("transform",u(e.x,e.y)+c(Math.min(1,e.scale))+u(e.tx,e.ty))})),_&&function(t,e){var r,n,i,a,o,s,l,c,u,f,h,p,d;function g(t,e){return t.pxmid[1]-e.pxmid[1]}function v(t,e){return e.pxmid[1]-t.pxmid[1]}function y(t,r){r||(r={});var i,c,u,h,p=r.labelExtraY+(n?r.yLabelMax:r.yLabelMin),d=n?t.yLabelMin:t.yLabelMax,g=n?t.yLabelMax:t.yLabelMin,v=t.cyFinal+o(t.px0[1],t.px1[1]),y=p-d;if(y*l>0&&(t.labelExtraY=y),Array.isArray(e.pull))for(c=0;c=(m.castOption(e.pull,u.pts)||0)||((t.pxmid[1]-u.pxmid[1])*l>0?(y=u.cyFinal+o(u.px0[1],u.px1[1])-d-t.labelExtraY)*l>0&&(t.labelExtraY+=y):(g+t.labelExtraY-v)*l>0&&(i=3*s*Math.abs(c-f.indexOf(t)),(h=u.cxFinal+a(u.px0[0],u.px1[0])+i-(t.cxFinal+t.pxmid[0])-t.labelExtraX)*s>0&&(t.labelExtraX+=h)))}for(n=0;n<2;n++)for(i=n?g:v,o=n?Math.max:Math.min,l=n?1:-1,r=0;r<2;r++){for(a=r?Math.max:Math.min,s=r?1:-1,(c=t[n][r]).sort(i),u=t[1-n][r],f=u.concat(c),p=[],h=0;hMath.abs(f)?s+="l"+f*t.pxmid[0]/t.pxmid[1]+","+f+"H"+(a+t.labelExtraX+c):s+="l"+t.labelExtraX+","+u+"v"+(f-u)+"h"+c}else s+="V"+(t.yLabelMid+t.labelExtraY)+"h"+c;l.ensureSingle(r,"path","textline").call(o.stroke,e.outsidetextfont.color).attr({"stroke-width":Math.min(2,e.outsidetextfont.size/8),d:s,fill:"none"})}else r.select("path.textline").remove()}))}(v,g),_&&g.automargin){var k=s.bBox(h.node()),M=g.domain,A=a.w*(M.x[1]-M.x[0]),S=a.h*(M.y[1]-M.y[0]),E=(.5*A-d.r)/a.w,I=(.5*S-d.r)/a.h;i.autoMargin(t,"pie."+g.uid+".automargin",{xl:M.x[0]-E,xr:M.x[1]+E,yb:M.y[0]-I,yt:M.y[1]+I,l:Math.max(d.cx-d.r-k.left,0),r:Math.max(k.right-(d.cx+d.r),0),b:Math.max(k.bottom-(d.cy+d.r),0),t:Math.max(d.cy-d.r-k.top,0),pad:5})}}))}));setTimeout((function(){h.selectAll("tspan").each((function(){var t=n.select(this);t.attr("dy")&&t.attr("dy",t.attr("dy"))}))}),0)},formatSliceLabel:D,transformInsideText:w,determineInsideTextFont:b,positionTitleOutside:L,prerenderTitles:_,layoutAreas:z,attachFxHandlers:x,computeTransform:R}},{"../../components/color":643,"../../components/drawing":665,"../../components/fx":683,"../../lib":778,"../../lib/svg_text_utils":803,"../../plots/plots":891,"../bar/constants":923,"../bar/uniform_text":937,"./event_data":1165,"./helpers":1166,d3:169}],1171:[function(t,e,r){"use strict";var n=t("d3"),i=t("./style_one"),a=t("../bar/uniform_text").resizeText;e.exports=function(t){var e=t._fullLayout._pielayer.selectAll(".trace");a(t,e,"pie"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll("path.surface").each((function(t){n.select(this).call(i,t,e)}))}))}},{"../bar/uniform_text":937,"./style_one":1172,d3:169}],1172:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("./helpers").castOption;e.exports=function(t,e,r){var a=r.marker.line,o=i(a.color,e.pts)||n.defaultLine,s=i(a.width,e.pts)||0;t.style("stroke-width",s).call(n.fill,e.color).call(n.stroke,o)}},{"../../components/color":643,"./helpers":1166}],1173:[function(t,e,r){"use strict";var n=t("../scatter/attributes");e.exports={x:n.x,y:n.y,xy:{valType:"data_array",editType:"calc"},indices:{valType:"data_array",editType:"calc"},xbounds:{valType:"data_array",editType:"calc"},ybounds:{valType:"data_array",editType:"calc"},text:n.text,marker:{color:{valType:"color",arrayOk:!1,editType:"calc"},opacity:{valType:"number",min:0,max:1,dflt:1,arrayOk:!1,editType:"calc"},blend:{valType:"boolean",dflt:null,editType:"calc"},sizemin:{valType:"number",min:.1,max:2,dflt:.5,editType:"calc"},sizemax:{valType:"number",min:.1,dflt:20,editType:"calc"},border:{color:{valType:"color",arrayOk:!1,editType:"calc"},arearatio:{valType:"number",min:0,max:1,dflt:0,editType:"calc"},editType:"calc"},editType:"calc"},transforms:void 0}},{"../scatter/attributes":1187}],1174:[function(t,e,r){"use strict";var n=t("gl-pointcloud2d"),i=t("../../lib/str2rgbarray"),a=t("../../plots/cartesian/autorange").findExtremes,o=t("../scatter/get_trace_color");function s(t,e){this.scene=t,this.uid=e,this.type="pointcloud",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color="rgb(0, 0, 0)",this.name="",this.hoverinfo="all",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=n(t.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*e],this.pickXYData[2*e+1]]:[this.pickXData[e],this.pickYData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:this.color,name:this.name,pointIndex:e,hoverinfo:this.hoverinfo}},l.update=function(t){this.index=t.index,this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(t),this.color=o(t,{})},l.updateFast=function(t){var e,r,n,o,s,l,c=this.xData=this.pickXData=t.x,u=this.yData=this.pickYData=t.y,f=this.pickXYData=t.xy,h=t.xbounds&&t.ybounds,p=t.indices,d=this.bounds;if(f){if(n=f,e=f.length>>>1,h)d[0]=t.xbounds[0],d[2]=t.xbounds[1],d[1]=t.ybounds[0],d[3]=t.ybounds[1];else for(l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);if(p)r=p;else for(r=new Int32Array(e),l=0;ld[2]&&(d[2]=o),sd[3]&&(d[3]=s);this.idToIndex=r,this.pointcloudOptions.idToIndex=r,this.pointcloudOptions.positions=n;var g=i(t.marker.color),m=i(t.marker.border.color),v=t.opacity*t.marker.opacity;g[3]*=v,this.pointcloudOptions.color=g;var y=t.marker.blend;if(null===y){y=c.length<100||u.length<100}this.pointcloudOptions.blend=y,m[3]*=v,this.pointcloudOptions.borderColor=m;var x=t.marker.sizemin,b=Math.max(t.marker.sizemax,t.marker.sizemin);this.pointcloudOptions.sizeMin=x,this.pointcloudOptions.sizeMax=b,this.pointcloudOptions.areaRatio=t.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var _=this.scene.xaxis,w=this.scene.yaxis,T=b/2||.5;t._extremes[_._id]=a(_,[d[0],d[2]],{ppad:T}),t._extremes[w._id]=a(w,[d[1],d[3]],{ppad:T})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(t,e){var r=new s(t,e.uid);return r.update(e),r}},{"../../lib/str2rgbarray":802,"../../plots/cartesian/autorange":827,"../scatter/get_trace_color":1197,"gl-pointcloud2d":324}],1175:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes");e.exports=function(t,e,r){function a(r,a){return n.coerce(t,e,i,r,a)}a("x"),a("y"),a("xbounds"),a("ybounds"),t.xy&&t.xy instanceof Float32Array&&(e.xy=t.xy),t.indices&&t.indices instanceof Int32Array&&(e.indices=t.indices),a("text"),a("marker.color",r),a("marker.opacity"),a("marker.blend"),a("marker.sizemin"),a("marker.sizemax"),a("marker.border.color",r),a("marker.border.arearatio"),e._length=null}},{"../../lib":778,"./attributes":1173}],1176:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("../scatter3d/calc"),plot:t("./convert"),moduleType:"trace",name:"pointcloud",basePlotModule:t("../../plots/gl2d"),categories:["gl","gl2d","showLegend"],meta:{}}},{"../../plots/gl2d":868,"../scatter3d/calc":1216,"./attributes":1173,"./convert":1174,"./defaults":1175}],1177:[function(t,e,r){"use strict";var n=t("../../plots/font_attributes"),i=t("../../plots/attributes"),a=t("../../components/color/attributes"),o=t("../../components/fx/attributes"),s=t("../../plots/domain").attributes,l=t("../../plots/template_attributes").hovertemplateAttrs,c=t("../../components/colorscale/attributes"),u=t("../../plot_api/plot_template").templatedArray,f=t("../../lib/extend").extendFlat,h=t("../../plot_api/edit_types").overrideAll;t("../../constants/docs").FORMAT_LINK;(e.exports=h({hoverinfo:f({},i.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:"sankey",trace:!0}),orientation:{valType:"enumerated",values:["v","h"],dflt:"h"},valueformat:{valType:"string",dflt:".3s"},valuesuffix:{valType:"string",dflt:""},arrangement:{valType:"enumerated",values:["snap","perpendicular","freeform","fixed"],dflt:"snap"},textfont:n({}),customdata:void 0,node:{label:{valType:"data_array",dflt:[]},groups:{valType:"info_array",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:"number",editType:"calc"}},x:{valType:"data_array",dflt:[]},y:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:.5,arrayOk:!0}},pad:{valType:"number",arrayOk:!1,min:0,dflt:20},thickness:{valType:"number",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]})},link:{label:{valType:"data_array",dflt:[]},color:{valType:"color",arrayOk:!0},customdata:{valType:"data_array",editType:"calc"},line:{color:{valType:"color",dflt:a.defaultLine,arrayOk:!0},width:{valType:"number",min:0,dflt:0,arrayOk:!0}},source:{valType:"data_array",dflt:[]},target:{valType:"data_array",dflt:[]},value:{valType:"data_array",dflt:[]},hoverinfo:{valType:"enumerated",values:["all","none","skip"],dflt:"all"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:["value","label"]}),colorscales:u("concentrationscales",{editType:"calc",label:{valType:"string",editType:"calc",dflt:""},cmax:{valType:"number",editType:"calc",dflt:1},cmin:{valType:"number",editType:"calc",dflt:0},colorscale:f(c().colorscale,{dflt:[[0,"white"],[1,"black"]]})})}},"calc","nested")).transforms=void 0},{"../../components/color/attributes":642,"../../components/colorscale/attributes":650,"../../components/fx/attributes":674,"../../constants/docs":748,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plot_api/plot_template":817,"../../plots/attributes":824,"../../plots/domain":855,"../../plots/font_attributes":856,"../../plots/template_attributes":906}],1178:[function(t,e,r){"use strict";var n=t("../../plot_api/edit_types").overrideAll,i=t("../../plots/get_data").getModuleCalcData,a=t("./plot"),o=t("../../components/fx/layout_attributes"),s=t("../../lib/setcursor"),l=t("../../components/dragelement"),c=t("../../plots/cartesian/select").prepSelect,u=t("../../lib"),f=t("../../registry");function h(t,e){var r=t._fullData[e],n=t._fullLayout,i=n.dragmode,a="pan"===n.dragmode?"move":"crosshair",o=r._bgRect;if("pan"!==i&&"zoom"!==i){s(o,a);var h={_id:"x",c2p:u.identity,_offset:r._sankey.translateX,_length:r._sankey.width},p={_id:"y",c2p:u.identity,_offset:r._sankey.translateY,_length:r._sankey.height},d={gd:t,element:o.node(),plotinfo:{id:e,xaxis:h,yaxis:p,fillRangeItems:u.noop},subplot:e,xaxes:[h],yaxes:[p],doneFnCompleted:function(r){var n,i=t._fullData[e],a=i.node.groups.slice(),o=[];function s(t){for(var e=i._sankey.graph.nodes,r=0;ry&&(y=a.source[e]),a.target[e]>y&&(y=a.target[e]);var x,b=y+1;t.node._count=b;var _=t.node.groups,w={};for(e=0;e<_.length;e++){var T=_[e];for(x=0;x0&&s(E,b)&&s(C,b)&&(!w.hasOwnProperty(E)||!w.hasOwnProperty(C)||w[E]!==w[C])){w.hasOwnProperty(C)&&(C=w[C]),w.hasOwnProperty(E)&&(E=w[E]),C=+C,h[E=+E]=h[C]=!0;var L="";a.label&&a.label[e]&&(L=a.label[e]);var I=null;L&&p.hasOwnProperty(L)&&(I=p[L]),c.push({pointNumber:e,label:L,color:u?a.color[e]:a.color,customdata:f?a.customdata[e]:a.customdata,concentrationscale:I,source:E,target:C,value:+S}),A.source.push(E),A.target.push(C)}}var P=b+_.length,z=o(r.color),O=o(r.customdata),D=[];for(e=0;eb-1,childrenNodes:[],pointNumber:e,label:R,color:z?r.color[e]:r.color,customdata:O?r.customdata[e]:r.customdata})}var F=!1;return function(t,e,r){for(var a=i.init2dArray(t,0),o=0;o1}))}(P,A.source,A.target)&&(F=!0),{circular:F,links:c,nodes:D,groups:_,groupLookup:w}}e.exports=function(t,e){var r=c(e);return a({circular:r.circular,_nodes:r.nodes,_links:r.links,_groups:r.groups,_groupLookup:r.groupLookup})}},{"../../components/colorscale":655,"../../lib":778,"../../lib/gup":775,"strongly-connected-components":569}],1180:[function(t,e,r){"use strict";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:"linear",cn:{sankey:"sankey",sankeyLinks:"sankey-links",sankeyLink:"sankey-link",sankeyNodeSet:"sankey-node-set",sankeyNode:"sankey-node",nodeRect:"node-rect",nodeCapture:"node-capture",nodeCentered:"node-entered",nodeLabelGuide:"node-label-guide",nodeLabel:"node-label",nodeLabelTextPath:"node-label-text-path"}}},{}],1181:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../components/color"),o=t("tinycolor2"),s=t("../../plots/domain").defaults,l=t("../../components/fx/hoverlabel_defaults"),c=t("../../plot_api/plot_template"),u=t("../../plots/array_container_defaults");function f(t,e){function r(r,a){return n.coerce(t,e,i.link.colorscales,r,a)}r("label"),r("cmin"),r("cmax"),r("colorscale")}e.exports=function(t,e,r,h){function p(r,a){return n.coerce(t,e,i,r,a)}var d=n.extendDeep(h.hoverlabel,t.hoverlabel),g=t.node,m=c.newContainer(e,"node");function v(t,e){return n.coerce(g,m,i.node,t,e)}v("label"),v("groups"),v("x"),v("y"),v("pad"),v("thickness"),v("line.color"),v("line.width"),v("hoverinfo",t.hoverinfo),l(g,m,v,d),v("hovertemplate");var y=h.colorway;v("color",m.label.map((function(t,e){return a.addOpacity(function(t){return y[t%y.length]}(e),.8)}))),v("customdata");var x=t.link||{},b=c.newContainer(e,"link");function _(t,e){return n.coerce(x,b,i.link,t,e)}_("label"),_("source"),_("target"),_("value"),_("line.color"),_("line.width"),_("hoverinfo",t.hoverinfo),l(x,b,_,d),_("hovertemplate");var w,T=o(h.paper_bgcolor).getLuminance()<.333?"rgba(255, 255, 255, 0.6)":"rgba(0, 0, 0, 0.2)";_("color",n.repeat(T,b.value.length)),_("customdata"),u(x,b,{name:"colorscales",handleItemDefaults:f}),s(e,h,p),p("orientation"),p("valueformat"),p("valuesuffix"),m.x.length&&m.y.length&&(w="freeform"),p("arrangement",w),n.coerceFont(p,"textfont",n.extendFlat({},h.font)),e._length=null}},{"../../components/color":643,"../../components/fx/hoverlabel_defaults":681,"../../lib":778,"../../plot_api/plot_template":817,"../../plots/array_container_defaults":823,"../../plots/domain":855,"./attributes":1177,tinycolor2:576}],1182:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("./calc"),plot:t("./plot"),moduleType:"trace",name:"sankey",basePlotModule:t("./base_plot"),selectPoints:t("./select.js"),categories:["noOpacity"],meta:{}}},{"./attributes":1177,"./base_plot":1178,"./calc":1179,"./defaults":1181,"./plot":1183,"./select.js":1185}],1183:[function(t,e,r){"use strict";var n=t("d3"),i=t("./render"),a=t("../../components/fx"),o=t("../../components/color"),s=t("../../lib"),l=t("./constants").cn,c=s._;function u(t){return""!==t}function f(t,e){return t.filter((function(t){return t.key===e.traceId}))}function h(t,e){n.select(t).select("path").style("fill-opacity",e),n.select(t).select("rect").style("fill-opacity",e)}function p(t){n.select(t).select("text.name").style("fill","black")}function d(t){return function(e){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(t){return function(e){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function m(t,e,r){e&&r&&f(r,e).selectAll("."+l.sankeyLink).filter(d(e)).call(y.bind(0,e,r,!1))}function v(t,e,r){e&&r&&f(r,e).selectAll("."+l.sankeyLink).filter(d(e)).call(x.bind(0,e,r,!1))}function y(t,e,r,n){var i=n.datum().link.label;n.style("fill-opacity",(function(t){if(!t.link.concentrationscale)return.4})),i&&f(e,t).selectAll("."+l.sankeyLink).filter((function(t){return t.link.label===i})).style("fill-opacity",(function(t){if(!t.link.concentrationscale)return.4})),r&&f(e,t).selectAll("."+l.sankeyNode).filter(g(t)).call(m)}function x(t,e,r,n){var i=n.datum().link.label;n.style("fill-opacity",(function(t){return t.tinyColorAlpha})),i&&f(e,t).selectAll("."+l.sankeyLink).filter((function(t){return t.link.label===i})).style("fill-opacity",(function(t){return t.tinyColorAlpha})),r&&f(e,t).selectAll(l.sankeyNode).filter(g(t)).call(v)}function b(t,e){var r=t.hoverlabel||{},n=s.nestedProperty(r,e).get();return!Array.isArray(n)&&n}e.exports=function(t,e){for(var r=t._fullLayout,s=r._paper,f=r._size,d=0;d"),color:b(s,"bgcolor")||o.addOpacity(d.color,1),borderColor:b(s,"bordercolor"),fontFamily:b(s,"font.family"),fontSize:b(s,"font.size"),fontColor:b(s,"font.color"),nameLength:b(s,"namelength"),textAlign:b(s,"align"),idealAlign:n.event.x"),color:b(o,"bgcolor")||i.tinyColorHue,borderColor:b(o,"bordercolor"),fontFamily:b(o,"font.family"),fontSize:b(o,"font.size"),fontColor:b(o,"font.color"),nameLength:b(o,"namelength"),textAlign:b(o,"align"),idealAlign:"left",hovertemplate:o.hovertemplate,hovertemplateLabels:v,eventData:[i.node]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t});h(_,.85),p(_)}}},unhover:function(e,i,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(v,i,o),"skip"!==i.node.trace.node.hoverinfo&&(i.node.fullData=i.node.trace,t.emit("plotly_unhover",{event:n.event,points:[i.node]})),a.loneUnhover(r._hoverlayer.node()))},select:function(e,r,i){var o=r.node;o.originalEvent=n.event,t._hoverdata=[o],n.select(e).call(v,r,i),a.click(t,{target:!0})}}})}},{"../../components/color":643,"../../components/fx":683,"../../lib":778,"./constants":1180,"./render":1184,d3:169}],1184:[function(t,e,r){"use strict";var n=t("./constants"),i=t("d3"),a=t("tinycolor2"),o=t("../../components/color"),s=t("../../components/drawing"),l=t("@plotly/d3-sankey"),c=t("@plotly/d3-sankey-circular"),u=t("d3-force"),f=t("../../lib"),h=f.strTranslate,p=t("../../lib/gup"),d=p.keyFun,g=p.repeat,m=p.unwrap,v=t("d3-interpolate").interpolateNumber,y=t("../../registry");function x(t,e,r){var i,o=m(e),s=o.trace,u=s.domain,h="h"===s.orientation,p=s.node.pad,d=s.node.thickness,g=t.width*(u.x[1]-u.x[0]),v=t.height*(u.y[1]-u.y[0]),y=o._nodes,x=o._links,b=o.circular;(i=b?c.sankeyCircular().circularLinkGap(0):l.sankey()).iterations(n.sankeyIterations).size(h?[g,v]:[v,g]).nodeWidth(d).nodePadding(p).nodeId((function(t){return t.pointNumber})).nodes(y).links(x);var _,w,T,k=i();for(var M in i.nodePadding()=i||(r=i-e.y0)>1e-6&&(e.y0+=r,e.y1+=r),i=e.y1+p}))}(function(t){var e,r,n=t.map((function(t,e){return{x0:t.x0,index:e}})).sort((function(t,e){return t.x0-e.x0})),i=[],a=-1,o=-1/0;for(_=0;_o+d&&(a+=1,e=s.x0),o=s.x0,i[a]||(i[a]=[]),i[a].push(s),r=e-s.x0,s.x0+=r,s.x1+=r}return i}(y=k.nodes));i.update(k)}return{circular:b,key:r,trace:s,guid:f.randstr(),horizontal:h,width:g,height:v,nodePad:s.node.pad,nodeLineColor:s.node.line.color,nodeLineWidth:s.node.line.width,linkLineColor:s.link.line.color,linkLineWidth:s.link.line.width,valueFormat:s.valueformat,valueSuffix:s.valuesuffix,textFont:s.textfont,translateX:u.x[0]*t.width+t.margin.l,translateY:t.height-u.y[1]*t.height+t.margin.t,dragParallel:h?v:g,dragPerpendicular:h?g:v,arrangement:s.arrangement,sankey:i,graph:k,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}function b(t,e,r){var n=a(e.color),i=e.source.label+"|"+e.target.label+"__"+r;return e.trace=t.trace,e.curveNumber=t.trace.index,{circular:t.circular,key:i,traceId:t.key,pointNumber:e.pointNumber,link:e,tinyColorHue:o.tinyRGB(n),tinyColorAlpha:n.getAlpha(),linkPath:_,linkLineColor:t.linkLineColor,linkLineWidth:t.linkLineWidth,valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,parent:t,interactionState:t.interactionState,flow:e.flow}}function _(){return function(t){if(t.link.circular)return e=t.link,r=e.width/2,n=e.circularPathData,"top"===e.circularLinkType?"M "+n.targetX+" "+(n.targetY+r)+" L"+n.rightInnerExtent+" "+(n.targetY+r)+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightSmallArcRadius+r)+" 0 0 1 "+(n.rightFullExtent-r)+" "+(n.targetY-n.rightSmallArcRadius)+"L"+(n.rightFullExtent-r)+" "+n.verticalRightInnerExtent+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightLargeArcRadius+r)+" 0 0 1 "+n.rightInnerExtent+" "+(n.verticalFullExtent-r)+"L"+n.leftInnerExtent+" "+(n.verticalFullExtent-r)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftLargeArcRadius+r)+" 0 0 1 "+(n.leftFullExtent+r)+" "+n.verticalLeftInnerExtent+"L"+(n.leftFullExtent+r)+" "+(n.sourceY-n.leftSmallArcRadius)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftSmallArcRadius+r)+" 0 0 1 "+n.leftInnerExtent+" "+(n.sourceY+r)+"L"+n.sourceX+" "+(n.sourceY+r)+"L"+n.sourceX+" "+(n.sourceY-r)+"L"+n.leftInnerExtent+" "+(n.sourceY-r)+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftSmallArcRadius-r)+" 0 0 0 "+(n.leftFullExtent-r)+" "+(n.sourceY-n.leftSmallArcRadius)+"L"+(n.leftFullExtent-r)+" "+n.verticalLeftInnerExtent+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftLargeArcRadius-r)+" 0 0 0 "+n.leftInnerExtent+" "+(n.verticalFullExtent+r)+"L"+n.rightInnerExtent+" "+(n.verticalFullExtent+r)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightLargeArcRadius-r)+" 0 0 0 "+(n.rightFullExtent+r)+" "+n.verticalRightInnerExtent+"L"+(n.rightFullExtent+r)+" "+(n.targetY-n.rightSmallArcRadius)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightSmallArcRadius-r)+" 0 0 0 "+n.rightInnerExtent+" "+(n.targetY-r)+"L"+n.targetX+" "+(n.targetY-r)+"Z":"M "+n.targetX+" "+(n.targetY-r)+" L"+n.rightInnerExtent+" "+(n.targetY-r)+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightSmallArcRadius+r)+" 0 0 0 "+(n.rightFullExtent-r)+" "+(n.targetY+n.rightSmallArcRadius)+"L"+(n.rightFullExtent-r)+" "+n.verticalRightInnerExtent+"A"+(n.rightLargeArcRadius+r)+" "+(n.rightLargeArcRadius+r)+" 0 0 0 "+n.rightInnerExtent+" "+(n.verticalFullExtent+r)+"L"+n.leftInnerExtent+" "+(n.verticalFullExtent+r)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftLargeArcRadius+r)+" 0 0 0 "+(n.leftFullExtent+r)+" "+n.verticalLeftInnerExtent+"L"+(n.leftFullExtent+r)+" "+(n.sourceY+n.leftSmallArcRadius)+"A"+(n.leftLargeArcRadius+r)+" "+(n.leftSmallArcRadius+r)+" 0 0 0 "+n.leftInnerExtent+" "+(n.sourceY-r)+"L"+n.sourceX+" "+(n.sourceY-r)+"L"+n.sourceX+" "+(n.sourceY+r)+"L"+n.leftInnerExtent+" "+(n.sourceY+r)+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftSmallArcRadius-r)+" 0 0 1 "+(n.leftFullExtent-r)+" "+(n.sourceY+n.leftSmallArcRadius)+"L"+(n.leftFullExtent-r)+" "+n.verticalLeftInnerExtent+"A"+(n.leftLargeArcRadius-r)+" "+(n.leftLargeArcRadius-r)+" 0 0 1 "+n.leftInnerExtent+" "+(n.verticalFullExtent-r)+"L"+n.rightInnerExtent+" "+(n.verticalFullExtent-r)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightLargeArcRadius-r)+" 0 0 1 "+(n.rightFullExtent+r)+" "+n.verticalRightInnerExtent+"L"+(n.rightFullExtent+r)+" "+(n.targetY+n.rightSmallArcRadius)+"A"+(n.rightLargeArcRadius-r)+" "+(n.rightSmallArcRadius-r)+" 0 0 1 "+n.rightInnerExtent+" "+(n.targetY+r)+"L"+n.targetX+" "+(n.targetY+r)+"Z";var e,r,n,i=t.link.source.x1,a=t.link.target.x0,o=v(i,a),s=o(.5),l=o(.5),c=t.link.y0-t.link.width/2,u=t.link.y0+t.link.width/2,f=t.link.y1-t.link.width/2,h=t.link.y1+t.link.width/2;return"M"+i+","+c+"C"+s+","+c+" "+l+","+f+" "+a+","+f+"L"+a+","+h+"C"+l+","+h+" "+s+","+u+" "+i+","+u+"Z"}}function w(t,e){var r=a(e.color),i=n.nodePadAcross,s=t.nodePad/2;e.dx=e.x1-e.x0,e.dy=e.y1-e.y0;var l=e.dx,c=Math.max(.5,e.dy),u="node_"+e.pointNumber;return e.group&&(u=f.randstr()),e.trace=t.trace,e.curveNumber=t.trace.index,{index:e.pointNumber,key:u,partOfGroup:e.partOfGroup||!1,group:e.group,traceId:t.key,trace:t.trace,node:e,nodePad:t.nodePad,nodeLineColor:t.nodeLineColor,nodeLineWidth:t.nodeLineWidth,textFont:t.textFont,size:t.horizontal?t.height:t.width,visibleWidth:Math.ceil(l),visibleHeight:c,zoneX:-i,zoneY:-s,zoneWidth:l+2*i,zoneHeight:c+2*s,labelY:t.horizontal?e.dy/2+1:e.dx/2+1,left:1===e.originalLayer,sizeAcross:t.width,forceLayouts:t.forceLayouts,horizontal:t.horizontal,darkBackground:r.getBrightness()<=128,tinyColorHue:o.tinyRGB(r),tinyColorAlpha:r.getAlpha(),valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,graph:t.graph,arrangement:t.arrangement,uniqueNodeLabelPathId:[t.guid,t.key,u].join("_"),interactionState:t.interactionState,figure:t}}function T(t){t.attr("transform",(function(t){return h(t.node.x0.toFixed(3),t.node.y0.toFixed(3))}))}function k(t){t.call(T)}function M(t,e){t.call(k),e.attr("d",_())}function A(t){t.attr("width",(function(t){return t.node.x1-t.node.x0})).attr("height",(function(t){return t.visibleHeight}))}function S(t){return t.link.width>1||t.linkLineWidth>0}function E(t){return h(t.translateX,t.translateY)+(t.horizontal?"matrix(1 0 0 1 0 0)":"matrix(0 1 1 0 0 0)")}function C(t){return h(t.horizontal?0:t.labelY,t.horizontal?t.labelY:0)}function L(t){return i.svg.line()([[t.horizontal?t.left?-t.sizeAcross:t.visibleWidth+n.nodeTextOffsetHorizontal:n.nodeTextOffsetHorizontal,0],[t.horizontal?t.left?-n.nodeTextOffsetHorizontal:t.sizeAcross:t.visibleHeight-n.nodeTextOffsetHorizontal,0]])}function I(t){return t.horizontal?"matrix(1 0 0 1 0 0)":"matrix(0 1 1 0 0 0)"}function P(t){return t.horizontal?"scale(1 1)":"scale(-1 1)"}function z(t){return t.darkBackground&&!t.horizontal?"rgb(255,255,255)":"rgb(0,0,0)"}function O(t){return t.horizontal&&t.left?"100%":"0%"}function D(t,e,r){t.on(".basic",null).on("mouseover.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.hover(this,t,e),t.interactionState.hovered=[this,t])})).on("mousemove.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.follow(this,t),t.interactionState.hovered=[this,t])})).on("mouseout.basic",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.unhover(this,t,e),t.interactionState.hovered=!1)})).on("click.basic",(function(t){t.interactionState.hovered&&(r.unhover(this,t,e),t.interactionState.hovered=!1),t.interactionState.dragInProgress||t.partOfGroup||r.select(this,t,e)}))}function R(t,e,r,a){var o=i.behavior.drag().origin((function(t){return{x:t.node.x0+t.visibleWidth/2,y:t.node.y0+t.visibleHeight/2}})).on("dragstart",(function(i){if("fixed"!==i.arrangement&&(f.ensureSingle(a._fullLayout._infolayer,"g","dragcover",(function(t){a._fullLayout._dragCover=t})),f.raiseToTop(this),i.interactionState.dragInProgress=i.node,B(i.node),i.interactionState.hovered&&(r.nodeEvents.unhover.apply(0,i.interactionState.hovered),i.interactionState.hovered=!1),"snap"===i.arrangement)){var o=i.traceId+"|"+i.key;i.forceLayouts[o]?i.forceLayouts[o].alpha(1):function(t,e,r,i){!function(t){for(var e=0;e0&&i.forceLayouts[e].alpha(0)}}(0,e,a,r)).stop()}(0,o,i),function(t,e,r,i,a){window.requestAnimationFrame((function o(){var s;for(s=0;s0)window.requestAnimationFrame(o);else{var l=r.node.originalX;r.node.x0=l-r.visibleWidth/2,r.node.x1=l+r.visibleWidth/2,F(r,a)}}))}(t,e,i,o,a)}})).on("drag",(function(r){if("fixed"!==r.arrangement){var n=i.event.x,a=i.event.y;"snap"===r.arrangement?(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2,r.node.y0=a-r.visibleHeight/2,r.node.y1=a+r.visibleHeight/2):("freeform"===r.arrangement&&(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2),a=Math.max(0,Math.min(r.size-r.visibleHeight/2,a)),r.node.y0=a-r.visibleHeight/2,r.node.y1=a+r.visibleHeight/2),B(r.node),"snap"!==r.arrangement&&(r.sankey.update(r.graph),M(t.filter(N(r)),e))}})).on("dragend",(function(t){if("fixed"!==t.arrangement){t.interactionState.dragInProgress=!1;for(var e=0;e5?t.node.label:""})).attr("text-anchor",(function(t){return t.horizontal&&t.left?"end":"start"})),q.transition().ease(n.ease).duration(n.duration).attr("startOffset",O).style("fill",z)}},{"../../components/color":643,"../../components/drawing":665,"../../lib":778,"../../lib/gup":775,"../../registry":911,"./constants":1180,"@plotly/d3-sankey":56,"@plotly/d3-sankey-circular":55,d3:169,"d3-force":160,"d3-interpolate":162,tinycolor2:576}],1185:[function(t,e,r){"use strict";e.exports=function(t,e){for(var r=[],n=t.cd[0].trace,i=n._sankey.graph.nodes,a=0;a<i.length;a++){var o=i[a];if(!o.partOfGroup){var s=[(o.x0+o.x1)/2,(o.y0+o.y1)/2];"v"===n.orientation&&s.reverse(),e&&e.contains(s,!1,a,t)&&r.push({pointNumber:o.pointNumber})}}return r}},{}],1186:[function(t,e,r){"use strict";var n=t("../../lib");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,"tx"),n.mergeArray(e.texttemplate,t,"txt"),n.mergeArray(e.hovertext,t,"htx"),n.mergeArray(e.customdata,t,"data"),n.mergeArray(e.textposition,t,"tp"),e.textfont&&(n.mergeArrayCastPositive(e.textfont.size,t,"ts"),n.mergeArray(e.textfont.color,t,"tc"),n.mergeArray(e.textfont.family,t,"tf"));var i=e.marker;if(i){n.mergeArrayCastPositive(i.size,t,"ms"),n.mergeArrayCastPositive(i.opacity,t,"mo"),n.mergeArray(i.symbol,t,"mx"),n.mergeArray(i.color,t,"mc");var a=i.line;i.line&&(n.mergeArray(a.color,t,"mlc"),n.mergeArrayCastPositive(a.width,t,"mlw"));var o=i.gradient;o&&"none"!==o.type&&(n.mergeArray(o.type,t,"mgt"),n.mergeArray(o.color,t,"mgc"))}}},{"../../lib":778}],1187:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").texttemplateAttrs,i=t("../../plots/template_attributes").hovertemplateAttrs,a=t("../../components/colorscale/attributes"),o=t("../../plots/font_attributes"),s=t("../../components/drawing/attributes").dash,l=t("../../components/drawing"),c=t("./constants"),u=t("../../lib/extend").extendFlat;e.exports={x:{valType:"data_array",editType:"calc+clearAxisTypes",anim:!0},x0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes",anim:!0},dx:{valType:"number",dflt:1,editType:"calc",anim:!0},y:{valType:"data_array",editType:"calc+clearAxisTypes",anim:!0},y0:{valType:"any",dflt:0,editType:"calc+clearAxisTypes",anim:!0},dy:{valType:"number",dflt:1,editType:"calc",anim:!0},xperiod:{valType:"any",dflt:0,editType:"calc"},yperiod:{valType:"any",dflt:0,editType:"calc"},xperiod0:{valType:"any",editType:"calc"},yperiod0:{valType:"any",editType:"calc"},xperiodalignment:{valType:"enumerated",values:["start","middle","end"],dflt:"middle",editType:"calc"},yperiodalignment:{valType:"enumerated",values:["start","middle","end"],dflt:"middle",editType:"calc"},stackgroup:{valType:"string",dflt:"",editType:"calc"},orientation:{valType:"enumerated",values:["v","h"],editType:"calc"},groupnorm:{valType:"enumerated",values:["","fraction","percent"],dflt:"",editType:"calc"},stackgaps:{valType:"enumerated",values:["infer zero","interpolate"],dflt:"infer zero",editType:"calc"},text:{valType:"string",dflt:"",arrayOk:!0,editType:"calc"},texttemplate:n({},{}),hovertext:{valType:"string",dflt:"",arrayOk:!0,editType:"style"},mode:{valType:"flaglist",flags:["lines","markers","text"],extras:["none"],editType:"calc"},hoveron:{valType:"flaglist",flags:["points","fills"],editType:"style"},hovertemplate:i({},{keys:c.eventDataKeys}),line:{color:{valType:"color",editType:"style",anim:!0},width:{valType:"number",min:0,dflt:2,editType:"style",anim:!0},shape:{valType:"enumerated",values:["linear","spline","hv","vh","hvh","vhv"],dflt:"linear",editType:"plot"},smoothing:{valType:"number",min:0,max:1.3,dflt:1,editType:"plot"},dash:u({},s,{editType:"style"}),simplify:{valType:"boolean",dflt:!0,editType:"plot"},editType:"plot"},connectgaps:{valType:"boolean",dflt:!1,editType:"calc"},cliponaxis:{valType:"boolean",dflt:!0,editType:"plot"},fill:{valType:"enumerated",values:["none","tozeroy","tozerox","tonexty","tonextx","toself","tonext"],editType:"calc"},fillcolor:{valType:"color",editType:"style",anim:!0},marker:u({symbol:{valType:"enumerated",values:l.symbolList,dflt:"circle",arrayOk:!0,editType:"style"},opacity:{valType:"number",min:0,max:1,arrayOk:!0,editType:"style",anim:!0},size:{valType:"number",min:0,dflt:6,arrayOk:!0,editType:"calc",anim:!0},maxdisplayed:{valType:"number",min:0,dflt:0,editType:"plot"},sizeref:{valType:"number",dflt:1,editType:"calc"},sizemin:{valType:"number",min:0,dflt:0,editType:"calc"},sizemode:{valType:"enumerated",values:["diameter","area"],dflt:"diameter",editType:"calc"},line:u({width:{valType:"number",min:0,arrayOk:!0,editType:"style",anim:!0},editType:"calc"},a("marker.line",{anim:!0})),gradient:{type:{valType:"enumerated",values:["radial","horizontal","vertical","none"],arrayOk:!0,dflt:"none",editType:"calc"},color:{valType:"color",arrayOk:!0,editType:"calc"},editType:"calc"},editType:"calc"},a("marker",{anim:!0})),selected:{marker:{opacity:{valType:"number",min:0,max:1,editType:"style"},color:{valType:"color",editType:"style"},size:{valType:"number",min:0,editType:"style"},editType:"style"},textfont:{color:{valType:"color",editType:"style"},editType:"style"},editType:"style"},unselected:{marker:{opacity:{valType:"number",min:0,max:1,editType:"style"},color:{valType:"color",editType:"style"},size:{valType:"number",min:0,editType:"style"},editType:"style"},textfont:{color:{valType:"color",editType:"style"},editType:"style"},editType:"style"},textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right"],dflt:"middle center",arrayOk:!0,editType:"calc"},textfont:o({editType:"calc",colorEditType:"style",arrayOk:!0}),r:{valType:"data_array",editType:"calc"},t:{valType:"data_array",editType:"calc"}}},{"../../components/colorscale/attributes":650,"../../components/drawing":665,"../../components/drawing/attributes":664,"../../lib/extend":768,"../../plots/font_attributes":856,"../../plots/template_attributes":906,"./constants":1191}],1188:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../../lib"),a=t("../../plots/cartesian/axes"),o=t("../../plots/cartesian/align_period"),s=t("../../constants/numerical").BADNUM,l=t("./subtypes"),c=t("./colorscale_calc"),u=t("./arrays_to_calcdata"),f=t("./calc_selection");function h(t,e,r,n,i,o,s){var c=e._length,u=t._fullLayout,f=r._id,h=n._id,p=u._firstScatter[g(e)]===e.uid,d=(m(e,u,r,n)||{}).orientation,v=e.fill;r._minDtick=0,n._minDtick=0;var y={padded:!0},x={padded:!0};s&&(y.ppad=x.ppad=s);var b=c<2||i[0]!==i[c-1]||o[0]!==o[c-1];b&&("tozerox"===v||"tonextx"===v&&(p||"h"===d))?y.tozero=!0:(e.error_y||{}).visible||"tonexty"!==v&&"tozeroy"!==v&&(l.hasMarkers(e)||l.hasText(e))||(y.padded=!1,y.ppad=0),b&&("tozeroy"===v||"tonexty"===v&&(p||"v"===d))?x.tozero=!0:"tonextx"!==v&&"tozerox"!==v||(x.padded=!1),f&&(e._extremes[f]=a.findExtremes(r,i,y)),h&&(e._extremes[h]=a.findExtremes(n,o,x))}function p(t,e){if(l.hasMarkers(t)){var r,n=t.marker,o=1.6*(t.marker.sizeref||1);if(r="area"===t.marker.sizemode?function(t){return Math.max(Math.sqrt((t||0)/o),3)}:function(t){return Math.max((t||0)/o,3)},i.isArrayOrTypedArray(n.size)){var s={type:"linear"};a.setConvert(s);for(var c=s.makeCalcdata(t.marker,"size"),u=new Array(e),f=0;f<e;f++)u[f]=r(c[f]);return u}return r(n.size)}}function d(t,e){var r=g(e),n=t._firstScatter;n[r]||(n[r]=e.uid)}function g(t){var e=t.stackgroup;return t.xaxis+t.yaxis+t.type+(e?"-"+e:"")}function m(t,e,r,n){var i=t.stackgroup;if(i){var a=e._scatterStackOpts[r._id+n._id][i],o="v"===a.orientation?n:r;return"linear"===o.type||"log"===o.type?a:void 0}}e.exports={calc:function(t,e){var r,l,g,v,y,x,b=t._fullLayout,_=a.getFromId(t,e.xaxis||"x"),w=a.getFromId(t,e.yaxis||"y"),T=_.makeCalcdata(e,"x"),k=w.makeCalcdata(e,"y"),M=o(e,_,"x",T),A=o(e,w,"y",k),S=e._length,E=new Array(S),C=e.ids,L=m(e,b,_,w),I=!1;d(b,e);var P,z="x",O="y";L?(i.pushUnique(L.traceIndices,e._expandedIndex),(r="v"===L.orientation)?(O="s",P="x"):(z="s",P="y"),y="interpolate"===L.stackgaps):h(t,e,_,w,M,A,p(e,S));var D=!!e.xperiodalignment,R=!!e.yperiodalignment;for(l=0;l<S;l++){var F=E[l]={},B=n(M[l]),N=n(A[l]);B&&N?(F[z]=M[l],F[O]=A[l],D&&(F.orig_x=T[l]),R&&(F.orig_y=k[l])):L&&(r?B:N)?(F[P]=r?M[l]:A[l],F.gap=!0,y?(F.s=s,I=!0):F.s=0):F[z]=F[O]=s,C&&(F.id=String(C[l]))}if(u(E,e),c(t,e),f(E,e),L){for(l=0;l<E.length;)E[l][P]===s?E.splice(l,1):l++;if(i.sort(E,(function(t,e){return t[P]-e[P]||t.i-e.i})),I){for(l=0;l<E.length-1&&E[l].gap;)l++;for((x=E[l].s)||(x=E[l].s=0),g=0;g<l;g++)E[g].s=x;for(v=E.length-1;v>l&&E[v].gap;)v--;for(x=E[v].s,g=E.length-1;g>v;g--)E[g].s=x;for(;lA[u]&&u=0;i--){var a=t[i];if("scatter"===a.type&&a.xaxis===r.xaxis&&a.yaxis===r.yaxis){a.opacity=void 0;break}}}}}},{}],1194:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./attributes"),o=t("./constants"),s=t("./subtypes"),l=t("./xy_defaults"),c=t("./period_defaults"),u=t("./stack_defaults"),f=t("./marker_defaults"),h=t("./line_defaults"),p=t("./line_shape_defaults"),d=t("./text_defaults"),g=t("./fillcolor_defaults");e.exports=function(t,e,r,m){function v(r,i){return n.coerce(t,e,a,r,i)}var y=l(t,e,m,v);if(y||(e.visible=!1),e.visible){c(t,e,m,v);var x=u(t,e,m,v),b=!x&&yG!=(F=P[L][1])>=G&&(O=P[L-1][0],D=P[L][0],F-R&&(z=O+(D-O)*(G-R)/(F-R),U=Math.min(U,z),V=Math.max(V,z)));U=Math.max(U,0),V=Math.min(V,h._length);var Y=s.defaultLine;return s.opacity(f.fillcolor)?Y=f.fillcolor:s.opacity((f.line||{}).color)&&(Y=f.line.color),n.extendFlat(t,{distance:t.maxHoverDistance,x0:U,x1:V,y0:G,y1:G,color:Y,hovertemplate:!1}),delete t.index,f.text&&!Array.isArray(f.text)?t.text=String(f.text):t.text=f.name,[t]}}}},{"../../components/color":643,"../../components/fx":683,"../../lib":778,"../../registry":911,"./get_trace_color":1197}],1199:[function(t,e,r){"use strict";var n=t("./subtypes");e.exports={hasLines:n.hasLines,hasMarkers:n.hasMarkers,hasText:n.hasText,isBubble:n.isBubble,attributes:t("./attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("./cross_trace_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./cross_trace_calc"),arraysToCalcdata:t("./arrays_to_calcdata"),plot:t("./plot"),colorbar:t("./marker_colorbar"),formatLabels:t("./format_labels"),style:t("./style").style,styleOnSelect:t("./style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("./select"),animatable:!0,moduleType:"trace",name:"scatter",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","symbols","errorBarsOK","showLegend","scatter-like","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"./arrays_to_calcdata":1186,"./attributes":1187,"./calc":1188,"./cross_trace_calc":1192,"./cross_trace_defaults":1193,"./defaults":1194,"./format_labels":1196,"./hover":1198,"./marker_colorbar":1205,"./plot":1208,"./select":1209,"./style":1211,"./subtypes":1212}],1200:[function(t,e,r){"use strict";var n=t("../../lib").isArrayOrTypedArray,i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults");e.exports=function(t,e,r,o,s,l){var c=(t.marker||{}).color;(s("line.color",r),i(t,"line"))?a(t,e,o,s,{prefix:"line.",cLetter:"c"}):s("line.color",!n(c)&&c||r);s("line.width"),(l||{}).noDash||s("line.dash")}},{"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"../../lib":778}],1201:[function(t,e,r){"use strict";var n=t("../../constants/numerical"),i=n.BADNUM,a=n.LOG_CLIP,o=a+.5,s=a-.5,l=t("../../lib"),c=l.segmentsIntersect,u=l.constrain,f=t("./constants");e.exports=function(t,e){var r,n,a,h,p,d,g,m,v,y,x,b,_,w,T,k,M,A,S=e.xaxis,E=e.yaxis,C="log"===S.type,L="log"===E.type,I=S._length,P=E._length,z=e.connectGaps,O=e.baseTolerance,D=e.shape,R="linear"===D,F=e.fill&&"none"!==e.fill,B=[],N=f.minTolerance,j=t.length,U=new Array(j),V=0;function q(r){var n=t[r];if(!n)return!1;var a=e.linearized?S.l2p(n.x):S.c2p(n.x),l=e.linearized?E.l2p(n.y):E.c2p(n.y);if(a===i){if(C&&(a=S.c2p(n.x,!0)),a===i)return!1;L&&l===i&&(a*=Math.abs(S._m*P*(S._m>0?o:s)/(E._m*I*(E._m>0?o:s)))),a*=1e3}if(l===i){if(L&&(l=E.c2p(n.y,!0)),l===i)return!1;l*=1e3}return[a,l]}function H(t,e,r,n){var i=r-t,a=n-e,o=.5-t,s=.5-e,l=i*i+a*a,c=i*o+a*s;if(c>0&&crt||t[1]it)return[u(t[0],et,rt),u(t[1],nt,it)]}function st(t,e){return t[0]===e[0]&&(t[0]===et||t[0]===rt)||(t[1]===e[1]&&(t[1]===nt||t[1]===it)||void 0)}function lt(t,e,r){return function(n,i){var a=ot(n),o=ot(i),s=[];if(a&&o&&st(a,o))return s;a&&s.push(a),o&&s.push(o);var c=2*l.constrain((n[t]+i[t])/2,e,r)-((a||n)[t]+(o||i)[t]);c&&((a&&o?c>0==a[t]>o[t]?a:o:a||o)[t]+=c);return s}}function ct(t){var e=t[0],r=t[1],n=e===U[V-1][0],i=r===U[V-1][1];if(!n||!i)if(V>1){var a=e===U[V-2][0],o=r===U[V-2][1];n&&(e===et||e===rt)&&a?o?V--:U[V-1]=t:i&&(r===nt||r===it)&&o?a?V--:U[V-1]=t:U[V++]=t}else U[V++]=t}function ut(t){U[V-1][0]!==t[0]&&U[V-1][1]!==t[1]&&ct([Z,J]),ct(t),K=null,Z=J=0}function ft(t){if(M=t[0]/I,A=t[1]/P,W=t[0]rt?rt:0,X=t[1]it?it:0,W||X){if(V)if(K){var e=$(K,t);e.length>1&&(ut(e[0]),U[V++]=e[1])}else Q=$(U[V-1],t)[0],U[V++]=Q;else U[V++]=[W||t[0],X||t[1]];var r=U[V-1];W&&X&&(r[0]!==W||r[1]!==X)?(K&&(Z!==W&&J!==X?ct(Z&&J?(n=K,a=(i=t)[0]-n[0],o=(i[1]-n[1])/a,(n[1]*i[0]-i[1]*n[0])/a>0?[o>0?et:rt,it]:[o>0?rt:et,nt]):[Z||W,J||X]):Z&&J&&ct([Z,J])),ct([W,X])):Z-W&&J-X&&ct([W||Z,X||J]),K=t,Z=W,J=X}else K&&ut($(K,t)[0]),U[V++]=t;var n,i,a,o}for("linear"===D||"spline"===D?$=function(t,e){for(var r=[],n=0,i=0;i<4;i++){var a=at[i],o=c(t[0],t[1],e[0],e[1],a[0],a[1],a[2],a[3]);o&&(!n||Math.abs(o.x-r[0][0])>1||Math.abs(o.y-r[0][1])>1)&&(o=[o.x,o.y],n&&Y(o,t)G(d,ht))break;a=d,(_=v[0]*m[0]+v[1]*m[1])>x?(x=_,h=d,g=!1):_=t.length||!d)break;ft(d),n=d}}else ft(h)}K&&ct([Z||K[0],J||K[1]]),B.push(U.slice(0,V))}return B}},{"../../constants/numerical":753,"../../lib":778,"./constants":1191}],1202:[function(t,e,r){"use strict";e.exports=function(t,e,r){"spline"===r("line.shape")&&r("line.smoothing")}},{}],1203:[function(t,e,r){"use strict";var n={tonextx:1,tonexty:1,tonext:1};e.exports=function(t,e,r){var i,a,o,s,l,c={},u=!1,f=-1,h=0,p=-1;for(a=0;a=0?l=p:(l=p=h,h++),l0?Math.max(e,i):0}}},{"fast-isnumeric":241}],1205:[function(t,e,r){"use strict";e.exports={container:"marker",min:"cmin",max:"cmax"}},{}],1206:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/helpers").hasColorscale,a=t("../../components/colorscale/defaults"),o=t("./subtypes");e.exports=function(t,e,r,s,l,c){var u=o.isBubble(t),f=(t.line||{}).color;(c=c||{},f&&(r=f),l("marker.symbol"),l("marker.opacity",u?.7:1),l("marker.size"),l("marker.color",r),i(t,"marker")&&a(t,e,s,l,{prefix:"marker.",cLetter:"c"}),c.noSelect||(l("selected.marker.color"),l("unselected.marker.color"),l("selected.marker.size"),l("unselected.marker.size")),c.noLine||(l("marker.line.color",f&&!Array.isArray(f)&&e.marker.color!==f?f:u?n.background:n.defaultLine),i(t,"marker.line")&&a(t,e,s,l,{prefix:"marker.line.",cLetter:"c"}),l("marker.line.width",u?1:0)),u&&(l("marker.sizeref"),l("marker.sizemin"),l("marker.sizemode")),c.gradient)&&("none"!==l("marker.gradient.type")&&l("marker.gradient.color"))}},{"../../components/color":643,"../../components/colorscale/defaults":653,"../../components/colorscale/helpers":654,"./subtypes":1212}],1207:[function(t,e,r){"use strict";var n=t("../../lib").dateTick0,i=t("../../constants/numerical").ONEWEEK;function a(t,e){return n(e,t%i==0?1:0)}e.exports=function(t,e,r,n,i){if(i||(i={x:!0,y:!0}),i.x){var o=n("xperiod");o&&(n("xperiod0",a(o,e.xcalendar)),n("xperiodalignment"))}if(i.y){var s=n("yperiod");s&&(n("yperiod0",a(s,e.ycalendar)),n("yperiodalignment"))}}},{"../../constants/numerical":753,"../../lib":778}],1208:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../registry"),a=t("../../lib"),o=a.ensureSingle,s=a.identity,l=t("../../components/drawing"),c=t("./subtypes"),u=t("./line_points"),f=t("./link_traces"),h=t("../../lib/polygon").tester;function p(t,e,r,f,p,d,g){var m;!function(t,e,r,i,o){var s=r.xaxis,l=r.yaxis,u=n.extent(a.simpleMap(s.range,s.r2c)),f=n.extent(a.simpleMap(l.range,l.r2c)),h=i[0].trace;if(!c.hasMarkers(h))return;var p=h.marker.maxdisplayed;if(0===p)return;var d=i.filter((function(t){return t.x>=u[0]&&t.x<=u[1]&&t.y>=f[0]&&t.y<=f[1]})),g=Math.ceil(d.length/p),m=0;o.forEach((function(t,r){var n=t[0].trace;c.hasMarkers(n)&&n.marker.maxdisplayed>0&&r0;function y(t){return v?t.transition():t}var x=r.xaxis,b=r.yaxis,_=f[0].trace,w=_.line,T=n.select(d),k=o(T,"g","errorbars"),M=o(T,"g","lines"),A=o(T,"g","points"),S=o(T,"g","text");if(i.getComponentMethod("errorbars","plot")(t,k,r,g),!0===_.visible){var E,C;y(T).style("opacity",_.opacity);var L=_.fill.charAt(_.fill.length-1);"x"!==L&&"y"!==L&&(L=""),f[0][r.isRangePlot?"nodeRangePlot3":"node3"]=T;var I,P,z="",O=[],D=_._prevtrace;D&&(z=D._prevRevpath||"",C=D._nextFill,O=D._polygons);var R,F,B,N,j,U,V,q="",H="",G=[],Y=a.noop;if(E=_._ownFill,c.hasLines(_)||"none"!==_.fill){for(C&&C.datum(f),-1!==["hv","vh","hvh","vhv"].indexOf(w.shape)?(R=l.steps(w.shape),F=l.steps(w.shape.split("").reverse().join(""))):R=F="spline"===w.shape?function(t){var e=t[t.length-1];return t.length>1&&t[0][0]===e[0]&&t[0][1]===e[1]?l.smoothclosed(t.slice(1),w.smoothing):l.smoothopen(t,w.smoothing)}:function(t){return"M"+t.join("L")},B=function(t){return F(t.reverse())},G=u(f,{xaxis:x,yaxis:b,connectGaps:_.connectgaps,baseTolerance:Math.max(w.width||1,3)/4,shape:w.shape,simplify:w.simplify,fill:_.fill}),V=_._polygons=new Array(G.length),m=0;m1){var r=n.select(this);if(r.datum(f),t)y(r.style("opacity",0).attr("d",I).call(l.lineGroupStyle)).style("opacity",1);else{var i=y(r);i.attr("d",I),l.singleLineStyle(f,i)}}}}}var W=M.selectAll(".js-line").data(G);y(W.exit()).style("opacity",0).remove(),W.each(Y(!1)),W.enter().append("path").classed("js-line",!0).style("vector-effect","non-scaling-stroke").call(l.lineGroupStyle).each(Y(!0)),l.setClipUrl(W,r.layerClipId,t),G.length?(E?(E.datum(f),N&&U&&(L?("y"===L?N[1]=U[1]=b.c2p(0,!0):"x"===L&&(N[0]=U[0]=x.c2p(0,!0)),y(E).attr("d","M"+U+"L"+N+"L"+q.substr(1)).call(l.singleFillStyle)):y(E).attr("d",q+"Z").call(l.singleFillStyle))):C&&("tonext"===_.fill.substr(0,6)&&q&&z?("tonext"===_.fill?y(C).attr("d",q+"Z"+z+"Z").call(l.singleFillStyle):y(C).attr("d",q+"L"+z.substr(1)+"Z").call(l.singleFillStyle),_._polygons=_._polygons.concat(O)):(Z(C),_._polygons=null)),_._prevRevpath=H,_._prevPolygons=V):(E?Z(E):C&&Z(C),_._polygons=_._prevRevpath=_._prevPolygons=null),A.datum(f),S.datum(f),function(e,i,a){var o,u=a[0].trace,f=c.hasMarkers(u),h=c.hasText(u),p=tt(u),d=et,g=et;if(f||h){var m=s,_=u.stackgroup,w=_&&"infer zero"===t._fullLayout._scatterStackOpts[x._id+b._id][_].stackgaps;u.marker.maxdisplayed||u._needsCull?m=w?K:J:_&&!w&&(m=Q),f&&(d=m),h&&(g=m)}var T,k=(o=e.selectAll("path.point").data(d,p)).enter().append("path").classed("point",!0);v&&k.call(l.pointStyle,u,t).call(l.translatePoints,x,b).style("opacity",0).transition().style("opacity",1),o.order(),f&&(T=l.makePointStyleFns(u)),o.each((function(e){var i=n.select(this),a=y(i);l.translatePoint(e,a,x,b)?(l.singlePointStyle(e,a,u,T,t),r.layerClipId&&l.hideOutsideRangePoint(e,a,x,b,u.xcalendar,u.ycalendar),u.customdata&&i.classed("plotly-customdata",null!==e.data&&void 0!==e.data)):a.remove()})),v?o.exit().transition().style("opacity",0).remove():o.exit().remove(),(o=i.selectAll("g").data(g,p)).enter().append("g").classed("textpoint",!0).append("text"),o.order(),o.each((function(t){var e=n.select(this),i=y(e.select("text"));l.translatePoint(t,i,x,b)?r.layerClipId&&l.hideOutsideRangePoint(t,e,x,b,u.xcalendar,u.ycalendar):e.remove()})),o.selectAll("text").call(l.textPointStyle,u,t).each((function(t){var e=x.c2p(t.x),r=b.c2p(t.y);n.select(this).selectAll("tspan.line").each((function(){y(n.select(this)).attr({x:e,y:r})}))})),o.exit().remove()}(A,S,f);var X=!1===_.cliponaxis?null:r.layerClipId;l.setClipUrl(A,X,t),l.setClipUrl(S,X,t)}function Z(t){y(t).attr("d","M0,0Z")}function J(t){return t.filter((function(t){return!t.gap&&t.vis}))}function K(t){return t.filter((function(t){return t.vis}))}function Q(t){return t.filter((function(t){return!t.gap}))}function $(t){return t.id}function tt(t){if(t.ids)return $}function et(){return!1}}e.exports=function(t,e,r,i,a,c){var u,h,d=!a,g=!!a&&a.duration>0,m=f(t,e,r);((u=i.selectAll("g.trace").data(m,(function(t){return t[0].trace.uid}))).enter().append("g").attr("class",(function(t){return"trace scatter trace"+t[0].trace.uid})).style("stroke-miterlimit",2),u.order(),function(t,e,r){e.each((function(e){var i=o(n.select(this),"g","fills");l.setClipUrl(i,r.layerClipId,t);var a=e[0].trace,c=[];a._ownfill&&c.push("_ownFill"),a._nexttrace&&c.push("_nextFill");var u=i.selectAll("g").data(c,s);u.enter().append("g"),u.exit().each((function(t){a[t]=null})).remove(),u.order().each((function(t){a[t]=o(n.select(this),"path","js-fill")}))}))}(t,u,e),g)?(c&&(h=c()),n.transition().duration(a.duration).ease(a.easing).each("end",(function(){h&&h()})).each("interrupt",(function(){h&&h()})).each((function(){i.selectAll("g.trace").each((function(r,n){p(t,n,e,r,m,this,a)}))}))):u.each((function(r,n){p(t,n,e,r,m,this,a)}));d&&u.exit().remove(),i.selectAll("path:not([d])").remove()}},{"../../components/drawing":665,"../../lib":778,"../../lib/polygon":790,"../../registry":911,"./line_points":1201,"./link_traces":1203,"./subtypes":1212,d3:169}],1209:[function(t,e,r){"use strict";var n=t("./subtypes");e.exports=function(t,e){var r,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[],f=s[0].trace;if(!n.hasMarkers(f)&&!n.hasText(f))return[];if(!1===e)for(r=0;r0){var h=i.c2l(u);i._lowerLogErrorBound||(i._lowerLogErrorBound=h),i._lowerErrorBound=Math.min(i._lowerLogErrorBound,h)}}else o[s]=[-l[0]*r,l[1]*r]}return o}e.exports=function(t,e,r){var n=[i(t.x,t.error_x,e[0],r.xaxis),i(t.y,t.error_y,e[1],r.yaxis),i(t.z,t.error_z,e[2],r.zaxis)],a=function(t){for(var e=0;e-1?-1:t.indexOf("right")>-1?1:0}function b(t){return null==t?0:t.indexOf("top")>-1?-1:t.indexOf("bottom")>-1?1:0}function _(t,e){return e(4*t)}function w(t){return p[t]}function T(t,e,r,n,i){var a=null;if(l.isArrayOrTypedArray(t)){a=[];for(var o=0;o=0){var g=function(t,e,r){var n,i=(r+1)%3,a=(r+2)%3,o=[],l=[];for(n=0;n=0&&f("surfacecolor",h||p);for(var d=["x","y","z"],g=0;g<3;++g){var m="projection."+d[g];f(m+".show")&&(f(m+".opacity"),f(m+".scale"))}var v=n.getComponentMethod("errorbars","supplyDefaults");v(t,e,h||p||r,{axis:"z"}),v(t,e,h||p||r,{axis:"y",inherit:"z"}),v(t,e,h||p||r,{axis:"x",inherit:"z"})}else e.visible=!1}},{"../../lib":778,"../../registry":911,"../scatter/line_defaults":1200,"../scatter/marker_defaults":1206,"../scatter/subtypes":1212,"../scatter/text_defaults":1213,"./attributes":1215}],1220:[function(t,e,r){"use strict";e.exports={plot:t("./convert"),attributes:t("./attributes"),markerSymbols:t("../../constants/gl3d_markers"),supplyDefaults:t("./defaults"),colorbar:[{container:"marker",min:"cmin",max:"cmax"},{container:"line",min:"cmin",max:"cmax"}],calc:t("./calc"),moduleType:"trace",name:"scatter3d",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","symbols","showLegend","scatter-like"],meta:{}}},{"../../constants/gl3d_markers":751,"../../plots/gl3d":870,"./attributes":1215,"./calc":1216,"./convert":1218,"./defaults":1219}],1221:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../plots/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../plots/template_attributes").texttemplateAttrs,s=t("../../components/colorscale/attributes"),l=t("../../lib/extend").extendFlat,c=n.marker,u=n.line,f=c.line;e.exports={carpet:{valType:"string",editType:"calc"},a:{valType:"data_array",editType:"calc"},b:{valType:"data_array",editType:"calc"},mode:l({},n.mode,{dflt:"markers"}),text:l({},n.text,{}),texttemplate:o({editType:"plot"},{keys:["a","b","text"]}),hovertext:l({},n.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,shape:l({},u.shape,{values:["linear","spline"]}),smoothing:u.smoothing,editType:"calc"},connectgaps:n.connectgaps,fill:l({},n.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:n.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:f.width,editType:"calc"},s("marker.line")),gradient:c.gradient,editType:"calc"},s("marker")),textfont:n.textfont,textposition:n.textposition,selected:n.selected,unselected:n.unselected,hoverinfo:l({},i.hoverinfo,{flags:["a","b","text","name"]}),hoveron:n.hoveron,hovertemplate:a()}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scatter/attributes":1187}],1222:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../scatter/colorscale_calc"),a=t("../scatter/arrays_to_calcdata"),o=t("../scatter/calc_selection"),s=t("../scatter/calc").calcMarkerSize,l=t("../carpet/lookup_carpetid");e.exports=function(t,e){var r=e._carpetTrace=l(t,e);if(r&&r.visible&&"legendonly"!==r.visible){var c;e.xaxis=r.xaxis,e.yaxis=r.yaxis;var u,f,h=e._length,p=new Array(h),d=!1;for(c=0;c<h;c++)if(u=e.a[c],f=e.b[c],n(u)&&n(f)){var g=r.ab2xy(+u,+f,!0),m=r.isVisible(+u,+f);m||(d=!0),p[c]={x:g[0],y:g[1],a:u,b:f,vis:m}}else p[c]={x:!1,y:!1};return e._needsCull=d,p[0].carpet=r,p[0].trace=e,s(e,h),i(t,e),a(p,e),o(p,e),p}}},{"../carpet/lookup_carpetid":981,"../scatter/arrays_to_calcdata":1186,"../scatter/calc":1188,"../scatter/calc_selection":1189,"../scatter/colorscale_calc":1190,"fast-isnumeric":241}],1223:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../scatter/constants"),a=t("../scatter/subtypes"),o=t("../scatter/marker_defaults"),s=t("../scatter/line_defaults"),l=t("../scatter/line_shape_defaults"),c=t("../scatter/text_defaults"),u=t("../scatter/fillcolor_defaults"),f=t("./attributes");e.exports=function(t,e,r,h){function p(r,i){return n.coerce(t,e,f,r,i)}p("carpet"),e.xaxis="x",e.yaxis="y";var d=p("a"),g=p("b"),m=Math.min(d.length,g.length);if(m){e._length=m,p("text"),p("texttemplate"),p("hovertext"),p("mode",m<i.PTS_LINESONLY?"lines+markers":"lines"),a.hasLines(e)&&(s(t,e,r,h,p),l(t,e,p),p("connectgaps")),a.hasMarkers(e)&&o(t,e,r,h,p,{gradient:!0}),a.hasText(e)&&c(t,e,h,p);var v=[];(a.hasMarkers(e)||a.hasText(e))&&(p("marker.maxdisplayed"),v.push("points")),p("fill"),"none"!==e.fill&&(u(t,e,r,p),a.hasLines(e)||l(t,e,p)),"tonext"!==e.fill&&"toself"!==e.fill||v.push("fills"),"fills"!==p("hoveron",v.join("+")||"points")&&p("hovertemplate"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{"../../lib":778,"../scatter/constants":1191,"../scatter/fillcolor_defaults":1195,"../scatter/line_defaults":1200,"../scatter/line_shape_defaults":1202,"../scatter/marker_defaults":1206,"../scatter/subtypes":1212,"../scatter/text_defaults":1213,"./attributes":1221}],1224:[function(t,e,r){"use strict";e.exports=function(t,e,r,n,i){var a=n[i];return t.a=a.a,t.b=a.b,t.y=a.y,t}},{}],1225:[function(t,e,r){"use strict";e.exports=function(t,e){var r={},n=e._carpet,i=n.ab2ij([t.a,t.b]),a=Math.floor(i[0]),o=i[0]-a,s=Math.floor(i[1]),l=i[1]-s,c=n.evalxy([],a,s,o,l);return r.yLabel=c[1].toFixed(3),r}},{}],1226:[function(t,e,r){"use strict";var n=t("../scatter/hover"),i=t("../../lib").fillText;e.exports=function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index){var l=1-s.y0/t.ya._length,c=t.xa._length,u=c*l/2,f=c-u;return s.x0=Math.max(Math.min(s.x0,f),u),s.x1=Math.max(Math.min(s.x1,f),u),o}var h=s.cd[s.index];s.a=h.a,s.b=h.b,s.xLabelVal=void 0,s.yLabelVal=void 0;var p=s.trace,d=p._carpet,g=p._module.formatLabels(h,p);s.yLabel=g.yLabel,delete s.text;var m=[];if(!p.hovertemplate){var v=(h.hi||p.hoverinfo).split("+");-1!==v.indexOf("all")&&(v=["a","b","text"]),-1!==v.indexOf("a")&&y(d.aaxis,h.a),-1!==v.indexOf("b")&&y(d.baxis,h.b),m.push("y: "+s.yLabel),-1!==v.indexOf("text")&&i(h,p,m),s.extraText=m.join("<br>")}return o}function y(t,e){var r;r=t.labelprefix&&t.labelprefix.length>0?t.labelprefix.replace(/ = $/,""):t._hovertitle,m.push(r+": "+e.toFixed(3)+t.labelsuffix)}}},{"../../lib":778,"../scatter/hover":1198}],1227:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../scatter/select"),eventData:t("./event_data"),moduleType:"trace",name:"scattercarpet",basePlotModule:t("../../plots/cartesian"),categories:["svg","carpet","symbols","showLegend","carpetDependent","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../scatter/marker_colorbar":1205,"../scatter/select":1209,"../scatter/style":1211,"./attributes":1221,"./calc":1222,"./defaults":1223,"./event_data":1224,"./format_labels":1225,"./hover":1226,"./plot":1228}],1228:[function(t,e,r){"use strict";var n=t("../scatter/plot"),i=t("../../plots/cartesian/axes"),a=t("../../components/drawing");e.exports=function(t,e,r,o){var s,l,c,u=r[0][0].carpet,f={xaxis:i.getFromId(t,u.xaxis||"x"),yaxis:i.getFromId(t,u.yaxis||"y"),plot:e.plot};for(n(t,f,r,o),s=0;s")}(c,g,t,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{"../../components/fx":683,"../../constants/numerical":753,"../../lib":778,"../scatter/get_trace_color":1197,"./attributes":1229}],1235:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),calcGeoJSON:t("./plot").calcGeoJSON,plot:t("./plot").plot,style:t("./style"),styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),moduleType:"trace",name:"scattergeo",basePlotModule:t("../../plots/geo"),categories:["geo","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/geo":860,"../scatter/marker_colorbar":1205,"../scatter/style":1211,"./attributes":1229,"./calc":1230,"./defaults":1231,"./event_data":1232,"./format_labels":1233,"./hover":1234,"./plot":1236,"./select":1237,"./style":1238}],1236:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../lib/topojson_utils").getTopojsonFeatures,o=t("../../lib/geojson_utils"),s=t("../../lib/geo_location_utils"),l=t("../../plots/cartesian/autorange").findExtremes,c=t("../../constants/numerical").BADNUM,u=t("../scatter/calc").calcMarkerSize,f=t("../scatter/subtypes"),h=t("./style");e.exports={calcGeoJSON:function(t,e){var r,n,i=t[0].trace,o=e[i.geo],f=o._subplot,h=i._length;if(Array.isArray(i.locations)){var p=i.locationmode,d="geojson-id"===p?s.extractTraceFeature(t):a(i,f.topojson);for(r=0;r=m,k=2*w,M={},A=x.makeCalcdata(e,"x"),S=b.makeCalcdata(e,"y"),E=s(e,x,"x",A),C=s(e,b,"y",S);e._x=E,e._y=C,e.xperiodalignment&&(e._origX=A),e.yperiodalignment&&(e._origY=S);var L=new Array(k);for(r=0;r1&&i.extendFlat(s.line,p.linePositions(t,r,n));if(s.errorX||s.errorY){var l=p.errorBarPositions(t,r,n,a,o);s.errorX&&i.extendFlat(s.errorX,l.x),s.errorY&&i.extendFlat(s.errorY,l.y)}s.text&&(i.extendFlat(s.text,{positions:n},p.textPosition(t,r,s.text,s.marker)),i.extendFlat(s.textSel,{positions:n},p.textPosition(t,r,s.text,s.markerSel)),i.extendFlat(s.textUnsel,{positions:n},p.textPosition(t,r,s.text,s.markerUnsel)));return s}(t,0,e,L,E,C),O=d(t,_);return f(y,e),T?z.marker&&(P=2*(z.marker.sizeAvg||Math.max(z.marker.size,3))):P=c(e,w),u(t,e,x,b,E,C,P),z.errorX&&v(e,x,z.errorX),z.errorY&&v(e,b,z.errorY),z.fill&&!O.fill2d&&(O.fill2d=!0),z.marker&&!O.scatter2d&&(O.scatter2d=!0),z.line&&!O.line2d&&(O.line2d=!0),!z.errorX&&!z.errorY||O.error2d||(O.error2d=!0),z.text&&!O.glText&&(O.glText=!0),z.marker&&(z.marker.snap=w),O.lineOptions.push(z.line),O.errorXOptions.push(z.errorX),O.errorYOptions.push(z.errorY),O.fillOptions.push(z.fill),O.markerOptions.push(z.marker),O.markerSelectedOptions.push(z.markerSel),O.markerUnselectedOptions.push(z.markerUnsel),O.textOptions.push(z.text),O.textSelectedOptions.push(z.textSel),O.textUnselectedOptions.push(z.textUnsel),O.selectBatch.push([]),O.unselectBatch.push([]),M._scene=O,M.index=O.count,M.x=E,M.y=C,M.positions=L,O.count++,[{x:!1,y:!1,t:M,trace:e}]}},{"../../constants/numerical":753,"../../lib":778,"../../plots/cartesian/align_period":825,"../../plots/cartesian/autorange":827,"../../plots/cartesian/axis_ids":831,"../scatter/calc":1188,"../scatter/colorscale_calc":1190,"./constants":1241,"./convert":1242,"./scene_update":1250,"@plotly/point-cluster":57}],1241:[function(t,e,r){"use strict";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},{}],1242:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("svg-path-sdf"),a=t("color-normalize"),o=t("../../registry"),s=t("../../lib"),l=t("../../components/drawing"),c=t("../../plots/cartesian/axis_ids"),u=t("../../lib/gl_format_color").formatColor,f=t("../scatter/subtypes"),h=t("../scatter/make_bubble_size_func"),p=t("./helpers"),d=t("./constants"),g=t("../../constants/interactions").DESELECTDIM,m={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},v=t("../../components/fx/helpers").appendArrayPointValue;function y(t,e){var r,i=t._fullLayout,a=e._length,o=e.textfont,l=e.textposition,c=Array.isArray(l)?l:[l],u=o.color,f=o.size,h=o.family,p={},d=e.texttemplate;if(d){p.text=[];var g=i._d3locale,m=Array.isArray(d),y=m?Math.min(d.length,a):a,x=m?function(t){return d[t]}:function(){return d};for(r=0;rd.TOO_MANY_POINTS||f.hasMarkers(e)?"rect":"round";if(c&&e.connectgaps){var h=n[0],p=n[1];for(i=0;i1?l[i]:l[0]:l,d=Array.isArray(c)?c.length>1?c[i]:c[0]:c,g=m[p],v=m[d],y=u?u/.8+1:0,x=-v*y-.5*v;o.offset[i]=[g*y/h,x/h]}}return o}}},{"../../components/drawing":665,"../../components/fx/helpers":679,"../../constants/interactions":752,"../../lib":778,"../../lib/gl_format_color":774,"../../plots/cartesian/axis_ids":831,"../../registry":911,"../scatter/make_bubble_size_func":1204,"../scatter/subtypes":1212,"./constants":1241,"./helpers":1246,"color-normalize":125,"fast-isnumeric":241,"svg-path-sdf":574}],1243:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../registry"),a=t("./helpers"),o=t("./attributes"),s=t("../scatter/constants"),l=t("../scatter/subtypes"),c=t("../scatter/xy_defaults"),u=t("../scatter/period_defaults"),f=t("../scatter/marker_defaults"),h=t("../scatter/line_defaults"),p=t("../scatter/fillcolor_defaults"),d=t("../scatter/text_defaults");e.exports=function(t,e,r,g){function m(r,i){return n.coerce(t,e,o,r,i)}var v=!!t.marker&&a.isOpenSymbol(t.marker.symbol),y=l.isBubble(t),x=c(t,e,g,m);if(x){u(t,e,g,m);var b=x100},r.isDotSymbol=function(t){return"string"==typeof t?n.DOT_RE.test(t):t>200}},{"./constants":1241}],1247:[function(t,e,r){"use strict";var n=t("../../registry"),i=t("../../lib"),a=t("../scatter/get_trace_color");function o(t,e,r,o){var s=t.xa,l=t.ya,c=t.distance,u=t.dxy,f=t.index,h={pointNumber:f,x:e[f],y:r[f]};h.tx=Array.isArray(o.text)?o.text[f]:o.text,h.htx=Array.isArray(o.hovertext)?o.hovertext[f]:o.hovertext,h.data=Array.isArray(o.customdata)?o.customdata[f]:o.customdata,h.tp=Array.isArray(o.textposition)?o.textposition[f]:o.textposition;var p=o.textfont;p&&(h.ts=i.isArrayOrTypedArray(p.size)?p.size[f]:p.size,h.tc=Array.isArray(p.color)?p.color[f]:p.color,h.tf=Array.isArray(p.family)?p.family[f]:p.family);var d=o.marker;d&&(h.ms=i.isArrayOrTypedArray(d.size)?d.size[f]:d.size,h.mo=i.isArrayOrTypedArray(d.opacity)?d.opacity[f]:d.opacity,h.mx=i.isArrayOrTypedArray(d.symbol)?d.symbol[f]:d.symbol,h.mc=i.isArrayOrTypedArray(d.color)?d.color[f]:d.color);var g=d&&d.line;g&&(h.mlc=Array.isArray(g.color)?g.color[f]:g.color,h.mlw=i.isArrayOrTypedArray(g.width)?g.width[f]:g.width);var m=d&&d.gradient;m&&"none"!==m.type&&(h.mgt=Array.isArray(m.type)?m.type[f]:m.type,h.mgc=Array.isArray(m.color)?m.color[f]:m.color);var v=s.c2p(h.x,!0),y=l.c2p(h.y,!0),x=h.mrc||1,b=o.hoverlabel;b&&(h.hbg=Array.isArray(b.bgcolor)?b.bgcolor[f]:b.bgcolor,h.hbc=Array.isArray(b.bordercolor)?b.bordercolor[f]:b.bordercolor,h.hts=i.isArrayOrTypedArray(b.font.size)?b.font.size[f]:b.font.size,h.htc=Array.isArray(b.font.color)?b.font.color[f]:b.font.color,h.htf=Array.isArray(b.font.family)?b.font.family[f]:b.font.family,h.hnl=i.isArrayOrTypedArray(b.namelength)?b.namelength[f]:b.namelength);var _=o.hoverinfo;_&&(h.hi=Array.isArray(_)?_[f]:_);var w=o.hovertemplate;w&&(h.ht=Array.isArray(w)?w[f]:w);var T={};T[t.index]=h;var k=o._origX,M=o._origY,A=i.extendFlat({},t,{color:a(o,h),x0:v-x,x1:v+x,xLabelVal:k?k[f]:h.x,y0:y-x,y1:y+x,yLabelVal:M?M[f]:h.y,cd:T,distance:c,spikeDistance:u,hovertemplate:h.ht});return h.htx?A.text=h.htx:h.tx?A.text=h.tx:o.text&&(A.text=o.text),i.fillText(h,o,A),n.getComponentMethod("errorbars","hoverInfo")(h,o,A),A}e.exports={hoverPoints:function(t,e,r,n){var i,a,s,l,c,u,f,h,p,d=t.cd,g=d[0].t,m=d[0].trace,v=t.xa,y=t.ya,x=g.x,b=g.y,_=v.c2p(e),w=y.c2p(r),T=t.distance;if(g.tree){var k=v.p2c(_-T),M=v.p2c(_+T),A=y.p2c(w-T),S=y.p2c(w+T);i="x"===n?g.tree.range(Math.min(k,M),Math.min(y._rl[0],y._rl[1]),Math.max(k,M),Math.max(y._rl[0],y._rl[1])):g.tree.range(Math.min(k,M),Math.min(A,S),Math.max(k,M),Math.max(A,S))}else i=g.ids;var E=T;if("x"===n)for(c=0;c-1;c--)s=x[i[c]],l=b[i[c]],u=v.c2p(s)-_,f=y.c2p(l)-w,(h=Math.sqrt(u*u+f*f))v.glText.length){var w=b-v.glText.length;for(d=0;dr&&(isNaN(e[n])||isNaN(e[n+1]));)n-=2;t.positions=e.slice(r,n+2)}return t})),v.line2d.update(v.lineOptions)),v.error2d){var k=(v.errorXOptions||[]).concat(v.errorYOptions||[]);v.error2d.update(k)}v.scatter2d&&v.scatter2d.update(v.markerOptions),v.fillOrder=s.repeat(null,b),v.fill2d&&(v.fillOptions=v.fillOptions.map((function(t,e){var n=r[e];if(t&&n&&n[0]&&n[0].trace){var i,a,o=n[0],s=o.trace,l=o.t,c=v.lineOptions[e],u=[];s._ownfill&&u.push(e),s._nexttrace&&u.push(e+1),u.length&&(v.fillOrder[e]=u);var f,h,p=[],d=c&&c.positions||l.positions;if("tozeroy"===s.fill){for(f=0;ff&&isNaN(d[h+1]);)h-=2;0!==d[f+1]&&(p=[d[f],0]),p=p.concat(d.slice(f,h+2)),0!==d[h+1]&&(p=p.concat([d[h],0]))}else if("tozerox"===s.fill){for(f=0;ff&&isNaN(d[h]);)h-=2;0!==d[f]&&(p=[0,d[f+1]]),p=p.concat(d.slice(f,h+2)),0!==d[h]&&(p=p.concat([0,d[h+1]]))}else if("toself"===s.fill||"tonext"===s.fill){for(p=[],i=0,a=0;a-1;for(d=0;d=0?Math.floor((e+180)/360):Math.ceil((e-180)/360)),d=e-p;if(n.getClosest(l,(function(t){var e=t.lonlat;if(e[0]===s)return 1/0;var n=i.modHalf(e[0],360),a=e[1],o=h.project([n,a]),l=o.x-u.c2p([d,a]),c=o.y-f.c2p([n,r]),p=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-p,1-3/p)}),t),!1!==t.index){var g=l[t.index],m=g.lonlat,v=[i.modHalf(m[0],360)+p,m[1]],y=u.c2p(v),x=f.c2p(v),b=g.mrc||1;t.x0=y-b,t.x1=y+b,t.y0=x-b,t.y1=x+b;var _={};_[c.subplot]={_subplot:h};var w=c._module.formatLabels(g,c,_);return t.lonLabel=w.lonLabel,t.latLabel=w.latLabel,t.color=a(c,g),t.extraText=function(t,e,r){if(t.hovertemplate)return;var n=(e.hi||t.hoverinfo).split("+"),i=-1!==n.indexOf("all"),a=-1!==n.indexOf("lon"),s=-1!==n.indexOf("lat"),l=e.lonlat,c=[];function u(t){return t+"\xb0"}i||a&&s?c.push("("+u(l[0])+", "+u(l[1])+")"):a?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(i||-1!==n.indexOf("text"))&&o(e,t,c);return c.join("
")}(c,g,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{"../../components/fx":683,"../../constants/numerical":753,"../../lib":778,"../scatter/get_trace_color":1197}],1258:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("../scattergeo/calc"),plot:t("./plot"),hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("./select"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.update(e)},moduleType:"trace",name:"scattermapbox",basePlotModule:t("../../plots/mapbox"),categories:["mapbox","gl","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/mapbox":885,"../scatter/marker_colorbar":1205,"../scattergeo/calc":1230,"./attributes":1252,"./defaults":1254,"./event_data":1255,"./format_labels":1256,"./hover":1257,"./plot":1259,"./select":1260}],1259:[function(t,e,r){"use strict";var n=t("./convert"),i=t("../../plots/mapbox/constants").traceLayerPrefix,a=["fill","line","circle","symbol"];function o(t,e){this.type="scattermapbox",this.subplot=t,this.uid=e,this.sourceIds={fill:"source-"+e+"-fill",line:"source-"+e+"-line",circle:"source-"+e+"-circle",symbol:"source-"+e+"-symbol"},this.layerIds={fill:i+e+"-fill",line:i+e+"-line",circle:i+e+"-circle",symbol:i+e+"-symbol"},this.below=null}var s=o.prototype;s.addSource=function(t,e){this.subplot.map.addSource(this.sourceIds[t],{type:"geojson",data:e.geojson})},s.setSourceData=function(t,e){this.subplot.map.getSource(this.sourceIds[t]).setData(e.geojson)},s.addLayer=function(t,e,r){this.subplot.addLayer({type:t,id:this.layerIds[t],source:this.sourceIds[t],layout:e.layout,paint:e.paint},r)},s.update=function(t){var e,r,i,o=this.subplot,s=o.map,l=n(o.gd,t),c=o.belowLookup["trace-"+this.uid];if(c!==this.below){for(e=a.length-1;e>=0;e--)r=a[e],s.removeLayer(this.layerIds[r]);for(e=0;e=0;e--){var r=a[e];t.removeLayer(this.layerIds[r]),t.removeSource(this.sourceIds[r])}},e.exports=function(t,e){for(var r=e[0].trace,i=new o(t,r.uid),s=n(t.gd,e),l=i.below=t.belowLookup["trace-"+r.uid],c=0;c")}}e.exports={hoverPoints:function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},{"../scatter/hover":1198}],1266:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"scatterpolar",basePlotModule:t("../../plots/polar"),categories:["polar","symbols","showLegend","scatter-like"],attributes:t("./attributes"),supplyDefaults:t("./defaults").supplyDefaults,colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover").hoverPoints,selectPoints:t("../scatter/select"),meta:{}}},{"../../plots/polar":894,"../scatter/marker_colorbar":1205,"../scatter/select":1209,"../scatter/style":1211,"./attributes":1261,"./calc":1262,"./defaults":1263,"./format_labels":1264,"./hover":1265,"./plot":1267}],1267:[function(t,e,r){"use strict";var n=t("../scatter/plot"),i=t("../../constants/numerical").BADNUM;e.exports=function(t,e,r){for(var a=e.layers.frontplot.select("g.scatterlayer"),o={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},s=e.radialAxis,l=e.angularAxis,c=0;c=c&&(y.marker.cluster=d.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=_),y.line&&_.length>1&&l.extendFlat(y.line,s.linePositions(t,p,_)),y.text&&(l.extendFlat(y.text,{positions:_},s.textPosition(t,p,y.text,y.marker)),l.extendFlat(y.textSel,{positions:_},s.textPosition(t,p,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:_},s.textPosition(t,p,y.text,y.markerUnsel))),y.fill&&!h.fill2d&&(h.fill2d=!0),y.marker&&!h.scatter2d&&(h.scatter2d=!0),y.line&&!h.line2d&&(h.line2d=!0),y.text&&!h.glText&&(h.glText=!0),h.lineOptions.push(y.line),h.fillOptions.push(y.fill),h.markerOptions.push(y.marker),h.markerSelectedOptions.push(y.markerSel),h.markerUnselectedOptions.push(y.markerUnsel),h.textOptions.push(y.text),h.textSelectedOptions.push(y.textSel),h.textUnselectedOptions.push(y.textUnsel),h.selectBatch.push([]),h.unselectBatch.push([]),d.x=w,d.y=T,d.rawx=w,d.rawy=T,d.r=m,d.theta=v,d.positions=_,d._scene=h,d.index=h.count,h.count++}})),a(t,e,r)}}},{"../../lib":778,"../scattergl/constants":1241,"../scattergl/convert":1242,"../scattergl/plot":1249,"../scattergl/scene_update":1250,"@plotly/point-cluster":57,"fast-isnumeric":241}],1275:[function(t,e,r){"use strict";var n=t("../../plots/template_attributes").hovertemplateAttrs,i=t("../../plots/template_attributes").texttemplateAttrs,a=t("../scatter/attributes"),o=t("../../plots/attributes"),s=t("../../components/colorscale/attributes"),l=t("../../components/drawing/attributes").dash,c=t("../../lib/extend").extendFlat,u=a.marker,f=a.line,h=u.line;e.exports={a:{valType:"data_array",editType:"calc"},b:{valType:"data_array",editType:"calc"},c:{valType:"data_array",editType:"calc"},sum:{valType:"number",dflt:0,min:0,editType:"calc"},mode:c({},a.mode,{dflt:"markers"}),text:c({},a.text,{}),texttemplate:i({editType:"plot"},{keys:["a","b","c","text"]}),hovertext:c({},a.hovertext,{}),line:{color:f.color,width:f.width,dash:l,shape:c({},f.shape,{values:["linear","spline"]}),smoothing:f.smoothing,editType:"calc"},connectgaps:a.connectgaps,cliponaxis:a.cliponaxis,fill:c({},a.fill,{values:["none","toself","tonext"],dflt:"none"}),fillcolor:a.fillcolor,marker:c({symbol:u.symbol,opacity:u.opacity,maxdisplayed:u.maxdisplayed,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,line:c({width:h.width,editType:"calc"},s("marker.line")),gradient:u.gradient,editType:"calc"},s("marker")),textfont:a.textfont,textposition:a.textposition,selected:a.selected,unselected:a.unselected,hoverinfo:c({},o.hoverinfo,{flags:["a","b","c","text","name"]}),hoveron:a.hoveron,hovertemplate:n()}},{"../../components/colorscale/attributes":650,"../../components/drawing/attributes":664,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../scatter/attributes":1187}],1276:[function(t,e,r){"use strict";var n=t("fast-isnumeric"),i=t("../scatter/colorscale_calc"),a=t("../scatter/arrays_to_calcdata"),o=t("../scatter/calc_selection"),s=t("../scatter/calc").calcMarkerSize,l=["a","b","c"],c={a:["b","c"],b:["a","c"],c:["a","b"]};e.exports=function(t,e){var r,u,f,h,p,d,g=t._fullLayout[e.subplot].sum,m=e.sum||g,v={a:e.a,b:e.b,c:e.c};for(r=0;r"),o.hovertemplate=h.hovertemplate,a}function x(t,e){v.push(t._hovertitle+": "+e)}}},{"../scatter/hover":1198}],1281:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),colorbar:t("../scatter/marker_colorbar"),formatLabels:t("./format_labels"),calc:t("./calc"),plot:t("./plot"),style:t("../scatter/style").style,styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../scatter/select"),eventData:t("./event_data"),moduleType:"trace",name:"scatterternary",basePlotModule:t("../../plots/ternary"),categories:["ternary","symbols","showLegend","scatter-like"],meta:{}}},{"../../plots/ternary":907,"../scatter/marker_colorbar":1205,"../scatter/select":1209,"../scatter/style":1211,"./attributes":1275,"./calc":1276,"./defaults":1277,"./event_data":1278,"./format_labels":1279,"./hover":1280,"./plot":1282}],1282:[function(t,e,r){"use strict";var n=t("../scatter/plot");e.exports=function(t,e,r){var i=e.plotContainer;i.select(".scatterlayer").selectAll("*").remove();var a={xaxis:e.xaxis,yaxis:e.yaxis,plot:i,layerClipId:e._hasClipOnAxisFalse?e.clipIdRelative:null},o=e.layers.frontplot.select("g.scatterlayer");n(t,a,r,o)}},{"../scatter/plot":1208}],1283:[function(t,e,r){"use strict";var n=t("../scatter/attributes"),i=t("../../components/colorscale/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../scattergl/attributes"),s=t("../../plots/cartesian/constants").idRegex,l=t("../../plot_api/plot_template").templatedArray,c=t("../../lib/extend").extendFlat,u=n.marker,f=u.line,h=c(i("marker.line",{editTypeOverride:"calc"}),{width:c({},f.width,{editType:"calc"}),editType:"calc"}),p=c(i("marker"),{symbol:u.symbol,size:c({},u.size,{editType:"markerSize"}),sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:h,editType:"calc"});function d(t){return{valType:"info_array",freeLength:!0,editType:"calc",items:{valType:"subplotid",regex:s[t],editType:"plot"}}}p.color.editType=p.cmin.editType=p.cmax.editType="style",e.exports={dimensions:l("dimension",{visible:{valType:"boolean",dflt:!0,editType:"calc"},label:{valType:"string",editType:"calc"},values:{valType:"data_array",editType:"calc+clearAxisTypes"},axis:{type:{valType:"enumerated",values:["linear","log","date","category"],editType:"calc+clearAxisTypes"},matches:{valType:"boolean",dflt:!1,editType:"calc"},editType:"calc+clearAxisTypes"},editType:"calc+clearAxisTypes"}),text:c({},o.text,{}),hovertext:c({},o.hovertext,{}),hovertemplate:a(),marker:p,xaxes:d("x"),yaxes:d("y"),diagonal:{visible:{valType:"boolean",dflt:!0,editType:"calc"},editType:"calc"},showupperhalf:{valType:"boolean",dflt:!0,editType:"calc"},showlowerhalf:{valType:"boolean",dflt:!0,editType:"calc"},selected:{marker:o.selected.marker,editType:"calc"},unselected:{marker:o.unselected.marker,editType:"calc"},opacity:o.opacity}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/plot_template":817,"../../plots/cartesian/constants":834,"../../plots/template_attributes":906,"../scatter/attributes":1187,"../scattergl/attributes":1239}],1284:[function(t,e,r){"use strict";var n=t("regl-line2d"),i=t("../../registry"),a=t("../../lib/prepare_regl"),o=t("../../plots/get_data").getModuleCalcData,s=t("../../plots/cartesian"),l=t("../../plots/cartesian/axis_ids").getFromId,c=t("../../plots/cartesian/axes").shouldShowZeroLine;function u(t,e,r){for(var n=r.matrixOptions.data.length,i=e._visibleDims,a=r.viewOpts.ranges=new Array(n),o=0;oh?2*(b.sizeAvg||Math.max(b.size,3)):a(e,x),p=0;pa&&l||i-1,A=!0;if(o(x)||!!p.selectedpoints||M){var S=p._length;if(p.selectedpoints){g.selectBatch=p.selectedpoints;var E=p.selectedpoints,C={};for(l=0;l1&&(u=g[y-1],h=m[y-1],d=v[y-1]),e=0;eu?"-":"+")+"x")).replace("y",(f>h?"-":"+")+"y")).replace("z",(p>d?"-":"+")+"z");var C=function(){y=0,A=[],S=[],E=[]};(!y||y2?t.slice(1,e-1):2===e?[(t[0]+t[1])/2]:t}function p(t){var e=t.length;return 1===e?[.5,.5]:[t[1]-t[0],t[e-1]-t[e-2]]}function d(t,e){var r=t.fullSceneLayout,i=t.dataScale,u=e._len,f={};function d(t,e){var n=r[e],o=i[c[e]];return a.simpleMap(t,(function(t){return n.d2l(t)*o}))}if(f.vectors=l(d(e._u,"xaxis"),d(e._v,"yaxis"),d(e._w,"zaxis"),u),!u)return{positions:[],cells:[]};var g=d(e._Xs,"xaxis"),m=d(e._Ys,"yaxis"),v=d(e._Zs,"zaxis");if(f.meshgrid=[g,m,v],f.gridFill=e._gridFill,e._slen)f.startingPositions=l(d(e._startsX,"xaxis"),d(e._startsY,"yaxis"),d(e._startsZ,"zaxis"));else{for(var y=m[0],x=h(g),b=h(v),_=new Array(x.length*b.length),w=0,T=0;T=0};v?(r=Math.min(m.length,x.length),l=function(t){return M(m[t])&&A(t)},f=function(t){return String(m[t])}):(r=Math.min(y.length,x.length),l=function(t){return M(y[t])&&A(t)},f=function(t){return String(y[t])}),_&&(r=Math.min(r,b.length));for(var S=0;S1){for(var I=a.randstr(),P=0;P"),name:k||z("name")?l.name:void 0,color:T("hoverlabel.bgcolor")||y.color,borderColor:T("hoverlabel.bordercolor"),fontFamily:T("hoverlabel.font.family"),fontSize:T("hoverlabel.font.size"),fontColor:T("hoverlabel.font.color"),nameLength:T("hoverlabel.namelength"),textAlign:T("hoverlabel.align"),hovertemplate:k,hovertemplateLabels:L,eventData:[f(i,l,h.eventDataKeys)]};m&&(R.x0=S-i.rInscribed*i.rpx1,R.x1=S+i.rInscribed*i.rpx1,R.idealAlign=i.pxmid[0]<0?"left":"right"),v&&(R.x=S,R.idealAlign=S<0?"left":"right"),o.loneHover(R,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:r}),d._hasHoverLabel=!0}if(v){var F=t.select("path.surface");h.styleOne(F,i,l,{hovered:!0})}d._hasHoverEvent=!0,r.emit("plotly_hover",{points:[f(i,l,h.eventDataKeys)],event:n.event})}})),t.on("mouseout",(function(e){var i=r._fullLayout,a=r._fullData[d.index],s=n.select(this).datum();if(d._hasHoverEvent&&(e.originalEvent=n.event,r.emit("plotly_unhover",{points:[f(s,a,h.eventDataKeys)],event:n.event}),d._hasHoverEvent=!1),d._hasHoverLabel&&(o.loneUnhover(i._hoverlayer.node()),d._hasHoverLabel=!1),v){var l=t.select("path.surface");h.styleOne(l,s,a,{hovered:!1})}})),t.on("click",(function(t){var e=r._fullLayout,a=r._fullData[d.index],s=m&&(c.isHierarchyRoot(t)||c.isLeaf(t)),u=c.getPtId(t),p=c.isEntry(t)?c.findEntryWithChild(g,u):c.findEntryWithLevel(g,u),v=c.getPtId(p),y={points:[f(t,a,h.eventDataKeys)],event:n.event};s||(y.nextLevel=v);var x=l.triggerHandler(r,"plotly_"+d.type+"click",y);if(!1!==x&&e.hovermode&&(r._hoverdata=[f(t,a,h.eventDataKeys)],o.click(r,n.event)),!s&&!1!==x&&!r._dragging&&!r._transitioning){i.call("_storeDirectGUIEdit",a,e._tracePreGUI[a.uid],{level:a.level});var b={data:[{level:v}],traces:[d.index]},_={frame:{redraw:!1,duration:h.transitionTime},transition:{duration:h.transitionTime,easing:h.transitionEasing},mode:"immediate",fromcurrent:!0};o.loneUnhover(e._hoverlayer.node()),i.call("animate",r,b,_)}}))}},{"../../components/fx":683,"../../components/fx/helpers":679,"../../lib":778,"../../lib/events":767,"../../registry":911,"../pie/helpers":1166,"./helpers":1305,d3:169}],1305:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("../../components/color"),a=t("../../lib/setcursor"),o=t("../pie/helpers");function s(t){return t.data.data.pid}r.findEntryWithLevel=function(t,e){var n;return e&&t.eachAfter((function(t){if(r.getPtId(t)===e)return n=t.copy()})),n||t},r.findEntryWithChild=function(t,e){var n;return t.eachAfter((function(t){for(var i=t.children||[],a=0;a0)},r.getMaxDepth=function(t){return t.maxdepth>=0?t.maxdepth:1/0},r.isHeader=function(t,e){return!(r.isLeaf(t)||t.depth===e._maxDepth-1)},r.getParent=function(t,e){return r.findEntryWithLevel(t,s(e))},r.listPath=function(t,e){var n=t.parent;if(!n)return[];var i=e?[n.data[e]]:[n];return r.listPath(n,e).concat(i)},r.getPath=function(t){return r.listPath(t,"label").join("/")+"/"},r.formatValue=o.formatPieValue,r.formatPercent=function(t,e){var r=n.formatPercent(t,0);return"0%"===r&&(r=o.formatPiePercent(t,e)),r}},{"../../components/color":643,"../../lib":778,"../../lib/setcursor":799,"../pie/helpers":1166}],1306:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"sunburst",basePlotModule:t("./base_plot"),categories:[],animatable:!0,attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot").plot,style:t("./style").style,colorbar:t("../scatter/marker_colorbar"),meta:{}}},{"../scatter/marker_colorbar":1205,"./attributes":1299,"./base_plot":1300,"./calc":1301,"./defaults":1303,"./layout_attributes":1307,"./layout_defaults":1308,"./plot":1309,"./style":1310}],1307:[function(t,e,r){"use strict";e.exports={sunburstcolorway:{valType:"colorlist",editType:"calc"},extendsunburstcolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{}],1308:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("sunburstcolorway",e.colorway),r("extendsunburstcolors")}},{"../../lib":778,"./layout_attributes":1307}],1309:[function(t,e,r){"use strict";var n=t("d3"),i=t("d3-hierarchy"),a=t("../../components/drawing"),o=t("../../lib"),s=t("../../lib/svg_text_utils"),l=t("../bar/uniform_text"),c=l.recordMinTextSize,u=l.clearMinTextSize,f=t("../pie/plot"),h=t("../pie/helpers").getRotationAngle,p=f.computeTransform,d=f.transformInsideText,g=t("./style").styleOne,m=t("../bar/style").resizeText,v=t("./fx"),y=t("./constants"),x=t("./helpers");function b(t,e,l,u){var f=t._fullLayout,m=!f.uniformtext.mode&&x.hasTransition(u),b=n.select(l).selectAll("g.slice"),w=e[0],T=w.trace,k=w.hierarchy,M=x.findEntryWithLevel(k,T.level),A=x.getMaxDepth(T),S=f._size,E=T.domain,C=S.w*(E.x[1]-E.x[0]),L=S.h*(E.y[1]-E.y[0]),I=.5*Math.min(C,L),P=w.cx=S.l+S.w*(E.x[1]+E.x[0])/2,z=w.cy=S.t+S.h*(1-E.y[0])-L/2;if(!M)return b.remove();var O=null,D={};m&&b.each((function(t){D[x.getPtId(t)]={rpx0:t.rpx0,rpx1:t.rpx1,x0:t.x0,x1:t.x1,transform:t.transform},!O&&x.isEntry(t)&&(O=t)}));var R=function(t){return i.partition().size([2*Math.PI,t.height+1])(t)}(M).descendants(),F=M.height+1,B=0,N=A;w.hasMultipleRoots&&x.isHierarchyRoot(M)&&(R=R.slice(1),F-=1,B=1,N+=1),R=R.filter((function(t){return t.y1<=N}));var j=h(T.rotation);j&&R.forEach((function(t){t.x0+=j,t.x1+=j}));var U=Math.min(F,A),V=function(t){return(t-B)/U*I},q=function(t,e){return[t*Math.cos(e),-t*Math.sin(e)]},H=function(t){return o.pathAnnulus(t.rpx0,t.rpx1,t.x0,t.x1,P,z)},G=function(t){return P+_(t)[0]*(t.transform.rCenter||0)+(t.transform.x||0)},Y=function(t){return z+_(t)[1]*(t.transform.rCenter||0)+(t.transform.y||0)};(b=b.data(R,x.getPtId)).enter().append("g").classed("slice",!0),m?b.exit().transition().each((function(){var t=n.select(this);t.select("path.surface").transition().attrTween("d",(function(t){var e=function(t){var e,r=x.getPtId(t),i=D[r],a=D[x.getPtId(M)];if(a){var o=(t.x1>a.x1?2*Math.PI:0)+j;e=t.rpx1W?2*Math.PI:0)+j;e={x0:a,x1:a}}else e={rpx0:I,rpx1:I},o.extendFlat(e,J(t));else e={rpx0:0,rpx1:0};else e={x0:j,x1:j};return n.interpolate(e,i)}(t);return function(t){return H(e(t))}})):u.attr("d",H),l.call(v,M,t,e,{eventDataKeys:y.eventDataKeys,transitionTime:y.CLICK_TRANSITION_TIME,transitionEasing:y.CLICK_TRANSITION_EASING}).call(x.setSliceCursor,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:t._transitioning}),u.call(g,i,T);var h=o.ensureSingle(l,"g","slicetext"),b=o.ensureSingle(h,"text","",(function(t){t.attr("data-notex",1)})),_=o.ensureUniformFontSize(t,x.determineTextFont(T,i,f.font));b.text(r.formatSliceLabel(i,M,T,e,f)).classed("slicetext",!0).attr("text-anchor","middle").call(a.font,_).call(s.convertToTspans,t);var k=a.bBox(b.node());i.transform=d(k,i,w),i.transform.targetX=G(i),i.transform.targetY=Y(i);var A=function(t,e){var r=t.transform;return p(r,e),r.fontSize=_.size,c(T.type,r,f),o.getTextTransform(r)};m?b.transition().attrTween("transform",(function(t){var e=function(t){var e,r=D[x.getPtId(t)],i=t.transform;if(r)e=r;else if(e={rpx1:t.rpx1,transform:{textPosAngle:i.textPosAngle,scale:0,rotate:i.rotate,rCenter:i.rCenter,x:i.x,y:i.y}},O)if(t.parent)if(W){var a=t.x1>W?2*Math.PI:0;e.x0=e.x1=a}else o.extendFlat(e,J(t));else e.x0=e.x1=j;else e.x0=e.x1=j;var s=n.interpolate(e.transform.textPosAngle,t.transform.textPosAngle),l=n.interpolate(e.rpx1,t.rpx1),u=n.interpolate(e.x0,t.x0),h=n.interpolate(e.x1,t.x1),p=n.interpolate(e.transform.scale,i.scale),d=n.interpolate(e.transform.rotate,i.rotate),g=0===i.rCenter?3:0===e.transform.rCenter?1/3:1,m=n.interpolate(e.transform.rCenter,i.rCenter);return function(t){var e=l(t),r=u(t),n=h(t),a=function(t){return m(Math.pow(t,g))}(t),o={pxmid:q(e,(r+n)/2),rpx1:e,transform:{textPosAngle:s(t),rCenter:a,x:i.x,y:i.y}};return c(T.type,i,f),{transform:{targetX:G(o),targetY:Y(o),scale:p(t),rotate:d(t),rCenter:a}}}}(t);return function(t){return A(e(t),k)}})):b.attr("transform",A(i,k))}))}function _(t){return e=t.rpx1,r=t.transform.textPosAngle,[e*Math.sin(r),-e*Math.cos(r)];var e,r}r.plot=function(t,e,r,i){var a,o,s=t._fullLayout,l=s._sunburstlayer,c=!r,f=!s.uniformtext.mode&&x.hasTransition(r);(u("sunburst",s),(a=l.selectAll("g.trace.sunburst").data(e,(function(t){return t[0].trace.uid}))).enter().append("g").classed("trace",!0).classed("sunburst",!0).attr("stroke-linejoin","round"),a.order(),f)?(i&&(o=i()),n.transition().duration(r.duration).ease(r.easing).each("end",(function(){o&&o()})).each("interrupt",(function(){o&&o()})).each((function(){l.selectAll("g.trace").each((function(e){b(t,e,this,r)}))}))):(a.each((function(e){b(t,e,this,r)})),s.uniformtext.mode&&m(t,s._sunburstlayer.selectAll(".trace"),"sunburst"));c&&a.exit().remove()},r.formatSliceLabel=function(t,e,r,n,i){var a=r.texttemplate,s=r.textinfo;if(!(a||s&&"none"!==s))return"";var l=i.separators,c=n[0],u=t.data.data,f=c.hierarchy,h=x.isHierarchyRoot(t),p=x.getParent(f,t),d=x.getValue(t);if(!a){var g,m=s.split("+"),v=function(t){return-1!==m.indexOf(t)},y=[];if(v("label")&&u.label&&y.push(u.label),u.hasOwnProperty("v")&&v("value")&&y.push(x.formatValue(u.v,l)),!h){v("current path")&&y.push(x.getPath(t.data));var b=0;v("percent parent")&&b++,v("percent entry")&&b++,v("percent root")&&b++;var _=b>1;if(b){var w,T=function(t){g=x.formatPercent(w,l),_&&(g+=" of "+t),y.push(g)};v("percent parent")&&!h&&(w=d/x.getValue(p),T("parent")),v("percent entry")&&(w=d/x.getValue(e),T("entry")),v("percent root")&&(w=d/x.getValue(f),T("root"))}}return v("text")&&(g=o.castOption(r,u.i,"text"),o.isValidTextValue(g)&&y.push(g)),y.join("
")}var k=o.castOption(r,u.i,"texttemplate");if(!k)return"";var M={};u.label&&(M.label=u.label),u.hasOwnProperty("v")&&(M.value=u.v,M.valueLabel=x.formatValue(u.v,l)),M.currentPath=x.getPath(t.data),h||(M.percentParent=d/x.getValue(p),M.percentParentLabel=x.formatPercent(M.percentParent,l),M.parent=x.getPtLabel(p)),M.percentEntry=d/x.getValue(e),M.percentEntryLabel=x.formatPercent(M.percentEntry,l),M.entry=x.getPtLabel(e),M.percentRoot=d/x.getValue(f),M.percentRootLabel=x.formatPercent(M.percentRoot,l),M.root=x.getPtLabel(f),u.hasOwnProperty("color")&&(M.color=u.color);var A=o.castOption(r,u.i,"text");return(o.isValidTextValue(A)||""===A)&&(M.text=A),M.customdata=o.castOption(r,u.i,"customdata"),o.texttemplateString(k,M,i._d3locale,M,r._meta||{})}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../bar/style":935,"../bar/uniform_text":937,"../pie/helpers":1166,"../pie/plot":1170,"./constants":1302,"./fx":1304,"./helpers":1305,"./style":1310,d3:169,"d3-hierarchy":161}],1310:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../../lib"),o=t("../bar/uniform_text").resizeText;function s(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=a.castOption(r,s,"marker.line.color")||i.defaultLine,c=a.castOption(r,s,"marker.line.width")||0;t.style("stroke-width",c).call(i.fill,n.color).call(i.stroke,l).style("opacity",o?r.leaf.opacity:null)}e.exports={style:function(t){var e=t._fullLayout._sunburstlayer.selectAll(".trace");o(t,e,"sunburst"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style("opacity",r.opacity),e.selectAll("path.surface").each((function(t){n.select(this).call(s,t,r)}))}))},styleOne:s}},{"../../components/color":643,"../../lib":778,"../bar/uniform_text":937,d3:169}],1311:[function(t,e,r){"use strict";var n=t("../../components/color"),i=t("../../components/colorscale/attributes"),a=t("../../plots/template_attributes").hovertemplateAttrs,o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l=t("../../plot_api/edit_types").overrideAll;function c(t){return{show:{valType:"boolean",dflt:!1},start:{valType:"number",dflt:null,editType:"plot"},end:{valType:"number",dflt:null,editType:"plot"},size:{valType:"number",dflt:null,min:0,editType:"plot"},project:{x:{valType:"boolean",dflt:!1},y:{valType:"boolean",dflt:!1},z:{valType:"boolean",dflt:!1}},color:{valType:"color",dflt:n.defaultLine},usecolormap:{valType:"boolean",dflt:!1},width:{valType:"number",min:1,max:16,dflt:2},highlight:{valType:"boolean",dflt:!0},highlightcolor:{valType:"color",dflt:n.defaultLine},highlightwidth:{valType:"number",min:1,max:16,dflt:2}}}var u=e.exports=l(s({z:{valType:"data_array"},x:{valType:"data_array"},y:{valType:"data_array"},text:{valType:"string",dflt:"",arrayOk:!0},hovertext:{valType:"string",dflt:"",arrayOk:!0},hovertemplate:a(),connectgaps:{valType:"boolean",dflt:!1,editType:"calc"},surfacecolor:{valType:"data_array"}},i("",{colorAttr:"z or surfacecolor",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:"calc"}),{contours:{x:c(),y:c(),z:c()},hidesurface:{valType:"boolean",dflt:!1},lightposition:{x:{valType:"number",min:-1e5,max:1e5,dflt:10},y:{valType:"number",min:-1e5,max:1e5,dflt:1e4},z:{valType:"number",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:"number",min:0,max:1,dflt:.8},diffuse:{valType:"number",min:0,max:1,dflt:.8},specular:{valType:"number",min:0,max:2,dflt:.05},roughness:{valType:"number",min:0,max:1,dflt:.5},fresnel:{valType:"number",min:0,max:5,dflt:.2}},opacity:{valType:"number",min:0,max:1,dflt:1},opacityscale:{valType:"any",editType:"calc"},_deprecated:{zauto:s({},i.zauto,{}),zmin:s({},i.zmin,{}),zmax:s({},i.zmax,{})},hoverinfo:s({},o.hoverinfo),showlegend:s({},o.showlegend,{dflt:!1})}),"calc","nested");u.x.editType=u.y.editType=u.z.editType="calc+clearAxisTypes",u.transforms=void 0},{"../../components/color":643,"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plots/attributes":824,"../../plots/template_attributes":906}],1312:[function(t,e,r){"use strict";var n=t("../../components/colorscale/calc");e.exports=function(t,e){e.surfacecolor?n(t,e,{vals:e.surfacecolor,containerStr:"",cLetter:"c"}):n(t,e,{vals:e.z,containerStr:"",cLetter:"c"})}},{"../../components/colorscale/calc":651}],1313:[function(t,e,r){"use strict";var n=t("gl-surface3d"),i=t("ndarray"),a=t("ndarray-linear-interpolate").d2,o=t("../heatmap/interp2d"),s=t("../heatmap/find_empties"),l=t("../../lib").isArrayOrTypedArray,c=t("../../lib/gl_format_color").parseColorScale,u=t("../../lib/str2rgbarray"),f=t("../../components/colorscale").extractOpts;function h(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var p=h.prototype;p.getXat=function(t,e,r,n){var i=l(this.data.x)?l(this.data.x[0])?this.data.x[e][t]:this.data.x[t]:t;return void 0===r?i:n.d2l(i,0,r)},p.getYat=function(t,e,r,n){var i=l(this.data.y)?l(this.data.y[0])?this.data.y[e][t]:this.data.y[e]:e;return void 0===r?i:n.d2l(i,0,r)},p.getZat=function(t,e,r,n){var i=this.data.z[e][t];return null===i&&this.data.connectgaps&&this.data._interpolatedZ&&(i=this.data._interpolatedZ[e][t]),void 0===r?i:n.d2l(i,0,r)},p.handlePick=function(t){if(t.object===this.surface){var e=(t.data.index[0]-1)/this.dataScaleX-1,r=(t.data.index[1]-1)/this.dataScaleY-1,n=Math.max(Math.min(Math.round(e),this.data.z[0].length-1),0),i=Math.max(Math.min(Math.round(r),this.data._ylength-1),0);t.index=[n,i],t.traceCoordinate=[this.getXat(n,i),this.getYat(n,i),this.getZat(n,i)],t.dataCoordinate=[this.getXat(n,i,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(n,i,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(n,i,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var a=0;a<3;a++){var o=t.dataCoordinate[a];null!=o&&(t.dataCoordinate[a]*=this.scene.dataScale[a])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[i]&&void 0!==s[i][n]?t.textLabel=s[i][n]:t.textLabel=s||"",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}};var d=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function g(t,e){if(t0){r=d[n];break}return r}function y(t,e){if(!(t<1||e<1)){for(var r=m(t),n=m(e),i=1,a=0;a_;)r--,r/=v(r),++r1?n:1},p.refineCoords=function(t){for(var e=this.dataScaleX,r=this.dataScaleY,n=t[0].shape[0],a=t[0].shape[1],o=0|Math.floor(t[0].shape[0]*e+1),s=0|Math.floor(t[0].shape[1]*r+1),l=1+n+1,c=1+a+1,u=i(new Float32Array(l*c),[l,c]),f=[1/e,0,0,0,1/r,0,0,0,1],h=0;h0&&null!==this.contourStart[t]&&null!==this.contourEnd[t]&&this.contourEnd[t]>this.contourStart[t]))for(i[t]=!0,e=this.contourStart[t];ea&&(this.minValues[e]=a),this.maxValues[e]",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:"cubic-out",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:"cubic-out",uplift:5,wrapSpacer:" ",wrapSplitCharacter:" ",cn:{table:"table",tableControlView:"table-control-view",scrollBackground:"scroll-background",yColumn:"y-column",columnBlock:"column-block",scrollAreaClip:"scroll-area-clip",scrollAreaClipRect:"scroll-area-clip-rect",columnBoundary:"column-boundary",columnBoundaryClippath:"column-boundary-clippath",columnBoundaryRect:"column-boundary-rect",columnCells:"column-cells",columnCell:"column-cell",cellRect:"cell-rect",cellText:"cell-text",cellTextHolder:"cell-text-holder",scrollbarKit:"scrollbar-kit",scrollbar:"scrollbar",scrollbarSlider:"scrollbar-slider",scrollbarGlyph:"scrollbar-glyph",scrollbarCaptureZone:"scrollbar-capture-zone"}}},{}],1320:[function(t,e,r){"use strict";var n=t("./constants"),i=t("../../lib/extend").extendFlat,a=t("fast-isnumeric");function o(t){if(Array.isArray(t)){for(var e=0,r=0;r=e||c===t.length-1)&&(n[i]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},i+=a,s=c+1,a=0);return n}e.exports=function(t,e){var r=l(e.cells.values),p=function(t){return t.slice(e.header.values.length,t.length)},d=l(e.header.values);d.length&&!d[0].length&&(d[0]=[""],d=l(d));var g=d.concat(p(r).map((function(){return c((d[0]||[""]).length)}))),m=e.domain,v=Math.floor(t._fullLayout._size.w*(m.x[1]-m.x[0])),y=Math.floor(t._fullLayout._size.h*(m.y[1]-m.y[0])),x=e.header.values.length?g[0].map((function(){return e.header.height})):[n.emptyHeaderHeight],b=r.length?r[0].map((function(){return e.cells.height})):[],_=x.reduce(s,0),w=h(b,y-_+n.uplift),T=f(h(x,_),[]),k=f(w,T),M={},A=e._fullInput.columnorder.concat(p(r.map((function(t,e){return e})))),S=g.map((function(t,r){var n=Array.isArray(e.columnwidth)?e.columnwidth[Math.min(r,e.columnwidth.length-1)]:e.columnwidth;return a(n)?Number(n):1})),E=S.reduce(s,0);S=S.map((function(t){return t/E*v}));var C=Math.max(o(e.header.line.width),o(e.cells.line.width)),L={key:e.uid+t._context.staticPlot,translateX:m.x[0]*t._fullLayout._size.w,translateY:t._fullLayout._size.h*(1-m.y[1]),size:t._fullLayout._size,width:v,maxLineWidth:C,height:y,columnOrder:A,groupHeight:y,rowBlocks:k,headerRowBlocks:T,scrollY:0,cells:i({},e.cells,{values:r}),headerCells:i({},e.header,{values:g}),gdColumns:g.map((function(t){return t[0]})),gdColumnsOriginalOrder:g.map((function(t){return t[0]})),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:g.map((function(t,e){var r=M[t];return M[t]=(r||0)+1,{key:t+"__"+M[t],label:t,specIndex:e,xIndex:A[e],xScale:u,x:void 0,calcdata:void 0,columnWidth:S[e]}}))};return L.columns.forEach((function(t){t.calcdata=L,t.x=u(t)})),L}},{"../../lib/extend":768,"./constants":1319,"fast-isnumeric":241}],1321:[function(t,e,r){"use strict";var n=t("../../lib/extend").extendFlat;r.splitToPanels=function(t){var e=[0,0],r=n({},t,{key:"header",type:"header",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!0,values:t.calcdata.headerCells.values[t.specIndex],rowBlocks:t.calcdata.headerRowBlocks,calcdata:n({},t.calcdata,{cells:t.calcdata.headerCells})});return[n({},t,{key:"cells1",type:"cells",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),n({},t,{key:"cells2",type:"cells",page:1,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),r]},r.splitToCells=function(t){var e=function(t){var e=t.rowBlocks[t.page],r=e?e.rows[0].rowIndex:0,n=e?r+e.rows.length:0;return[r,n]}(t);return(t.values||[]).slice(e[0],e[1]).map((function(r,n){return{keyWithinBlock:n+("string"==typeof r&&r.match(/[<$&> ]/)?"_keybuster_"+Math.random():""),key:e[0]+n,column:t,calcdata:t.calcdata,page:t.page,rowBlocks:t.rowBlocks,value:r}}))}},{"../../lib/extend":768}],1322:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../plots/domain").defaults;e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}a(e,o,s),s("columnwidth"),s("header.values"),s("header.format"),s("header.align"),s("header.prefix"),s("header.suffix"),s("header.height"),s("header.line.width"),s("header.line.color"),s("header.fill.color"),n.coerceFont(s,"header.font",n.extendFlat({},o.font)),function(t,e){for(var r=t.columnorder||[],n=t.header.values.length,i=r.slice(0,n),a=i.slice().sort((function(t,e){return t-e})),o=i.map((function(t){return a.indexOf(t)})),s=o.length;s/i),l=!o||s;t.mayHaveMarkup=o&&a.match(/[<&>]/);var c,u="string"==typeof(c=a)&&c.match(n.latexCheck);t.latex=u;var f,h,p=u?"":w(t.calcdata.cells.prefix,e,r)||"",d=u?"":w(t.calcdata.cells.suffix,e,r)||"",g=u?null:w(t.calcdata.cells.format,e,r)||null,m=p+(g?i.format(g)(t.value):t.value)+d;if(t.wrappingNeeded=!t.wrapped&&!l&&!u&&(f=_(m)),t.cellHeightMayIncrease=s||u||t.mayHaveMarkup||(void 0===f?_(m):f),t.needsConvertToTspans=t.mayHaveMarkup||t.wrappingNeeded||t.latex,t.wrappingNeeded){var v=(" "===n.wrapSplitCharacter?m.replace(/i&&n.push(a),i+=l}return n}(i,l,s);1===u.length&&(u[0]===i.length-1?u.unshift(u[0]-1):u.push(u[0]+1)),u[0]%2&&u.reverse(),e.each((function(t,e){t.page=u[e],t.scrollY=l})),e.attr("transform",(function(t){var e=O(t.rowBlocks,t.page)-t.scrollY;return c(0,e)})),t&&(C(t,r,e,u,n.prevPages,n,0),C(t,r,e,u,n.prevPages,n,1),y(r,t))}}function E(t,e,r,a){return function(o){var s=o.calcdata?o.calcdata:o,l=e.filter((function(t){return s.key===t.key})),c=r||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===a?s.scrollY+c*i.event.dy:a;var f=l.selectAll("."+n.cn.yColumn).selectAll("."+n.cn.columnBlock).filter(k);return S(t,f,l),s.scrollY===u}}function C(t,e,r,n,i,a,o){n[o]!==i[o]&&(clearTimeout(a.currentRepaint[o]),a.currentRepaint[o]=setTimeout((function(){var a=r.filter((function(t,e){return e===o&&n[e]!==i[e]}));x(t,e,a,r),i[o]=n[o]})))}function L(t,e,r,a){return function(){var o=i.select(e.parentNode);o.each((function(t){var e=t.fragments;o.selectAll("tspan.line").each((function(t,r){e[r].width=this.getComputedTextLength()}));var r,i,a=e[e.length-1].width,s=e.slice(0,-1),l=[],c=0,u=t.column.columnWidth-2*n.cellPad;for(t.value="";s.length;)c+(i=(r=s.shift()).width+a)>u&&(t.value+=l.join(n.wrapSpacer)+n.lineBreaker,l=[],c=0),l.push(r.text),c+=i;c&&(t.value+=l.join(n.wrapSpacer)),t.wrapped=!0})),o.selectAll("tspan.line").remove(),b(o.select("."+n.cn.cellText),r,t,a),i.select(e.parentNode.parentNode).call(z)}}function I(t,e,r,a,o){return function(){if(!o.settledY){var s=i.select(e.parentNode),l=F(o),u=o.key-l.firstRowIndex,f=l.rows[u].rowHeight,h=o.cellHeightMayIncrease?e.parentNode.getBoundingClientRect().height+2*n.cellPad:f,p=Math.max(h,f);p-l.rows[u].rowHeight&&(l.rows[u].rowHeight=p,t.selectAll("."+n.cn.columnCell).call(z),S(null,t.filter(k),0),y(r,a,!0)),s.attr("transform",(function(){var t=this.parentNode.getBoundingClientRect(),e=i.select(this.parentNode).select("."+n.cn.cellRect).node().getBoundingClientRect(),r=this.transform.baseVal.consolidate(),a=e.top-t.top+(r?r.matrix.f:n.cellPad);return c(P(o,i.select(this.parentNode).select("."+n.cn.cellTextHolder).node().getBoundingClientRect().width),a)})),o.settledY=!0}}}function P(t,e){switch(t.align){case"left":return n.cellPad;case"right":return t.column.columnWidth-(e||0)-n.cellPad;case"center":return(t.column.columnWidth-(e||0))/2;default:return n.cellPad}}function z(t){t.attr("transform",(function(t){var e=t.rowBlocks[0].auxiliaryBlocks.reduce((function(t,e){return t+D(e,1/0)}),0),r=D(F(t),t.key);return c(0,r+e)})).selectAll("."+n.cn.cellRect).attr("height",(function(t){return(e=F(t),r=t.key,e.rows[r-e.firstRowIndex]).rowHeight;var e,r}))}function O(t,e){for(var r=0,n=e-1;n>=0;n--)r+=R(t[n]);return r}function D(t,e){for(var r=0,n=0;n","<","|","/","\\"],dflt:">",editType:"plot"},thickness:{valType:"number",min:12,editType:"plot"},textfont:u({},s.textfont,{}),editType:"calc"},text:s.text,textinfo:l.textinfo,texttemplate:i({editType:"plot"},{keys:c.eventDataKeys.concat(["label","value"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:n({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:u({},s.outsidetextfont,{}),textposition:{valType:"enumerated",values:["top left","top center","top right","middle left","middle center","middle right","bottom left","bottom center","bottom right"],dflt:"top left",editType:"plot"},sort:s.sort,root:l.root,domain:o({name:"treemap",trace:!0,editType:"calc"})}},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plots/domain":855,"../../plots/template_attributes":906,"../pie/attributes":1161,"../sunburst/attributes":1299,"./constants":1328}],1326:[function(t,e,r){"use strict";var n=t("../../plots/plots");r.name="treemap",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{"../../plots/plots":891}],1327:[function(t,e,r){"use strict";var n=t("../sunburst/calc");r.calc=function(t,e){return n.calc(t,e)},r.crossTraceCalc=function(t){return n._runCrossTraceCalc("treemap",t)}},{"../sunburst/calc":1301}],1328:[function(t,e,r){"use strict";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:"poly",eventDataKeys:["currentPath","root","entry","percentRoot","percentEntry","percentParent"],gapWithPathbar:1}},{}],1329:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../../components/color"),o=t("../../plots/domain").defaults,s=t("../bar/defaults").handleText,l=t("../bar/constants").TEXTPAD,c=t("../../components/colorscale"),u=c.hasColorscale,f=c.handleDefaults;e.exports=function(t,e,r,c){function h(r,a){return n.coerce(t,e,i,r,a)}var p=h("labels"),d=h("parents");if(p&&p.length&&d&&d.length){var g=h("values");g&&g.length?h("branchvalues"):h("count"),h("level"),h("maxdepth"),"squarify"===h("tiling.packing")&&h("tiling.squarifyratio"),h("tiling.flip"),h("tiling.pad");var m=h("text");h("texttemplate"),e.texttemplate||h("textinfo",Array.isArray(m)?"text+label":"label"),h("hovertext"),h("hovertemplate");var v=h("pathbar.visible");s(t,e,c,h,"auto",{hasPathbar:v,moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),h("textposition");var y=-1!==e.textposition.indexOf("bottom");h("marker.line.width")&&h("marker.line.color",c.paper_bgcolor);var x=h("marker.colors"),b=e._hasColorscale=u(t,"marker","colors")||(t.marker||{}).coloraxis;b?f(t,e,c,h,{prefix:"marker.",cLetter:"c"}):h("marker.depthfade",!(x||[]).length);var _=2*e.textfont.size;h("marker.pad.t",y?_/4:_),h("marker.pad.l",_/4),h("marker.pad.r",_/4),h("marker.pad.b",y?_:_/4),b&&f(t,e,c,h,{prefix:"marker.",cLetter:"c"}),e._hovered={marker:{line:{width:2,color:a.contrast(c.paper_bgcolor)}}},v&&(h("pathbar.thickness",e.pathbar.textfont.size+2*l),h("pathbar.side"),h("pathbar.edgeshape")),h("sort"),h("root.color"),o(e,c,h),e._length=null}else e.visible=!1}},{"../../components/color":643,"../../components/colorscale":655,"../../lib":778,"../../plots/domain":855,"../bar/constants":923,"../bar/defaults":925,"./attributes":1325}],1330:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../lib/svg_text_utils"),s=t("./partition"),l=t("./style").styleOne,c=t("./constants"),u=t("../sunburst/helpers"),f=t("../sunburst/fx");e.exports=function(t,e,r,h,p){var d=p.barDifY,g=p.width,m=p.height,v=p.viewX,y=p.viewY,x=p.pathSlice,b=p.toMoveInsideSlice,_=p.strTransform,w=p.hasTransition,T=p.handleSlicesExit,k=p.makeUpdateSliceInterpolator,M=p.makeUpdateTextInterpolator,A={},S=t._fullLayout,E=e[0],C=E.trace,L=E.hierarchy,I=g/C._entryDepth,P=u.listPath(r.data,"id"),z=s(L.copy(),[g,m],{packing:"dice",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(z=z.filter((function(t){var e=P.indexOf(t.data.id);return-1!==e&&(t.x0=I*e,t.x1=I*(e+1),t.y0=d,t.y1=d+m,t.onPathbar=!0,!0)}))).reverse(),(h=h.data(z,u.getPtId)).enter().append("g").classed("pathbar",!0),T(h,!0,A,[g,m],x),h.order();var O=h;w&&(O=O.transition().each("end",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})}))),O.each((function(s){s._hoverX=v(s.x1-Math.min(g,m)/2),s._hoverY=y(s.y1-m/2);var h=n.select(this),p=i.ensureSingle(h,"path","surface",(function(t){t.style("pointer-events","all")}));w?p.transition().attrTween("d",(function(t){var e=k(t,!0,A,[g,m]);return function(t){return x(e(t))}})):p.attr("d",x),h.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:t._transitioning}),p.call(l,s,C,{hovered:!1}),s._text=(u.getPtLabel(s)||"").split("
").join(" ")||"";var d=i.ensureSingle(h,"g","slicetext"),T=i.ensureSingle(d,"text","",(function(t){t.attr("data-notex",1)})),E=i.ensureUniformFontSize(t,u.determineTextFont(C,s,S.font,{onPathbar:!0}));T.text(s._text||" ").classed("slicetext",!0).attr("text-anchor","start").call(a.font,E).call(o.convertToTspans,t),s.textBB=a.bBox(T.node()),s.transform=b(s,{fontSize:E.size,onPathbar:!0}),s.transform.fontSize=E.size,w?T.transition().attrTween("transform",(function(t){var e=M(t,!0,A,[g,m]);return function(t){return _(e(t))}})):T.attr("transform",_(s))}))}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../sunburst/fx":1304,"../sunburst/helpers":1305,"./constants":1328,"./partition":1335,"./style":1337,d3:169}],1331:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../../lib/svg_text_utils"),s=t("./partition"),l=t("./style").styleOne,c=t("./constants"),u=t("../sunburst/helpers"),f=t("../sunburst/fx"),h=t("../sunburst/plot").formatSliceLabel;e.exports=function(t,e,r,p,d){var g=d.width,m=d.height,v=d.viewX,y=d.viewY,x=d.pathSlice,b=d.toMoveInsideSlice,_=d.strTransform,w=d.hasTransition,T=d.handleSlicesExit,k=d.makeUpdateSliceInterpolator,M=d.makeUpdateTextInterpolator,A=d.prevEntry,S=t._fullLayout,E=e[0].trace,C=-1!==E.textposition.indexOf("left"),L=-1!==E.textposition.indexOf("right"),I=-1!==E.textposition.indexOf("bottom"),P=!I&&!E.marker.pad.t||I&&!E.marker.pad.b,z=s(r,[g,m],{packing:E.tiling.packing,squarifyratio:E.tiling.squarifyratio,flipX:E.tiling.flip.indexOf("x")>-1,flipY:E.tiling.flip.indexOf("y")>-1,pad:{inner:E.tiling.pad,top:E.marker.pad.t,left:E.marker.pad.l,right:E.marker.pad.r,bottom:E.marker.pad.b}}).descendants(),O=1/0,D=-1/0;z.forEach((function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(O=Math.min(O,e),D=Math.max(D,e))})),p=p.data(z,u.getPtId),E._maxVisibleLayers=isFinite(D)?D-O+1:0,p.enter().append("g").classed("slice",!0),T(p,!1,{},[g,m],x),p.order();var R=null;if(w&&A){var F=u.getPtId(A);p.each((function(t){null===R&&u.getPtId(t)===F&&(R={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})}))}var B=function(){return R||{x0:0,x1:g,y0:0,y1:m}},N=p;return w&&(N=N.transition().each("end",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),N.each((function(s){var p=u.isHeader(s,E);s._hoverX=v(s.x1-E.marker.pad.r),s._hoverY=y(I?s.y1-E.marker.pad.b/2:s.y0+E.marker.pad.t/2);var d=n.select(this),T=i.ensureSingle(d,"path","surface",(function(t){t.style("pointer-events","all")}));w?T.transition().attrTween("d",(function(t){var e=k(t,!1,B(),[g,m]);return function(t){return x(e(t))}})):T.attr("d",x),d.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),T.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text="":s._text=p?P?"":u.getPtLabel(s)||"":h(s,r,E,e,S)||"";var A=i.ensureSingle(d,"g","slicetext"),z=i.ensureSingle(A,"text","",(function(t){t.attr("data-notex",1)})),O=i.ensureUniformFontSize(t,u.determineTextFont(E,s,S.font));z.text(s._text||" ").classed("slicetext",!0).attr("text-anchor",L?"end":C||p?"start":"middle").call(a.font,O).call(o.convertToTspans,t),s.textBB=a.bBox(z.node()),s.transform=b(s,{fontSize:O.size,isHeader:p}),s.transform.fontSize=O.size,w?z.transition().attrTween("transform",(function(t){var e=M(t,!1,B(),[g,m]);return function(t){return _(e(t))}})):z.attr("transform",_(s))})),R}},{"../../components/drawing":665,"../../lib":778,"../../lib/svg_text_utils":803,"../sunburst/fx":1304,"../sunburst/helpers":1305,"../sunburst/plot":1309,"./constants":1328,"./partition":1335,"./style":1337,d3:169}],1332:[function(t,e,r){"use strict";e.exports={moduleType:"trace",name:"treemap",basePlotModule:t("./base_plot"),categories:[],animatable:!0,attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc").calc,crossTraceCalc:t("./calc").crossTraceCalc,plot:t("./plot"),style:t("./style").style,colorbar:t("../scatter/marker_colorbar"),meta:{}}},{"../scatter/marker_colorbar":1205,"./attributes":1325,"./base_plot":1326,"./calc":1327,"./defaults":1329,"./layout_attributes":1333,"./layout_defaults":1334,"./plot":1336,"./style":1337}],1333:[function(t,e,r){"use strict";e.exports={treemapcolorway:{valType:"colorlist",editType:"calc"},extendtreemapcolors:{valType:"boolean",dflt:!0,editType:"calc"}}},{}],1334:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r("treemapcolorway",e.colorway),r("extendtreemapcolors")}},{"../../lib":778,"./layout_attributes":1333}],1335:[function(t,e,r){"use strict";var n=t("d3-hierarchy");e.exports=function(t,e,r){var i,a=r.flipX,o=r.flipY,s="dice-slice"===r.packing,l=r.pad[o?"bottom":"top"],c=r.pad[a?"right":"left"],u=r.pad[a?"left":"right"],f=r.pad[o?"top":"bottom"];s&&(i=c,c=l,l=i,i=u,u=f,f=i);var h=n.treemap().tile(function(t,e){switch(t){case"squarify":return n.treemapSquarify.ratio(e);case"binary":return n.treemapBinary;case"dice":return n.treemapDice;case"slice":return n.treemapSlice;default:return n.treemapSliceDice}}(r.packing,r.squarifyratio)).paddingInner(r.pad.inner).paddingLeft(c).paddingRight(u).paddingTop(l).paddingBottom(f).size(s?[e[1],e[0]]:e)(t);return(s||a||o)&&function t(e,r,n){var i;n.swapXY&&(i=e.x0,e.x0=e.y0,e.y0=i,i=e.x1,e.x1=e.y1,e.y1=i);n.flipX&&(i=e.x0,e.x0=r[0]-e.x1,e.x1=r[0]-i);n.flipY&&(i=e.y0,e.y0=r[1]-e.y1,e.y1=r[1]-i);var a=e.children;if(a)for(var o=0;o-1?E+I:-(L+I):0,z={x0:C,x1:C,y0:P,y1:P+L},O=function(t,e,r){var n=m.tiling.pad,i=function(t){return t-n<=e.x0},a=function(t){return t+n>=e.x1},o=function(t){return t-n<=e.y0},s=function(t){return t+n>=e.y1};return{x0:i(t.x0-n)?0:a(t.x0-n)?r[0]:t.x0,x1:i(t.x1+n)?0:a(t.x1+n)?r[0]:t.x1,y0:o(t.y0-n)?0:s(t.y0-n)?r[1]:t.y0,y1:o(t.y1+n)?0:s(t.y1+n)?r[1]:t.y1}},D=null,R={},F={},B=null,N=function(t,e){return e?R[g(t)]:F[g(t)]},j=function(t,e,r,n){if(e)return R[g(v)]||z;var i=F[m.level]||r;return function(t){return t.data.depth-y.data.depth=(n-=v.r-o)){var y=(r+n)/2;r=y,n=y}var x;h?i<(x=a-v.b)&&x"===Q?(l.x-=a,c.x-=a,u.x-=a,f.x-=a):"/"===Q?(u.x-=a,f.x-=a,o.x-=a/2,s.x-=a/2):"\\"===Q?(l.x-=a,c.x-=a,o.x-=a/2,s.x-=a/2):"<"===Q&&(o.x-=a,s.x-=a),K(l),K(f),K(o),K(c),K(u),K(s),"M"+Z(l.x,l.y)+"L"+Z(c.x,c.y)+"L"+Z(s.x,s.y)+"L"+Z(u.x,u.y)+"L"+Z(f.x,f.y)+"L"+Z(o.x,o.y)+"Z"},toMoveInsideSlice:$,makeUpdateSliceInterpolator:et,makeUpdateTextInterpolator:rt,handleSlicesExit:nt,hasTransition:T,strTransform:it}):b.remove()}e.exports=function(t,e,r,a){var o,s,l=t._fullLayout,c=l._treemaplayer,h=!r;(u("treemap",l),(o=c.selectAll("g.trace.treemap").data(e,(function(t){return t[0].trace.uid}))).enter().append("g").classed("trace",!0).classed("treemap",!0),o.order(),!l.uniformtext.mode&&i.hasTransition(r))?(a&&(s=a()),n.transition().duration(r.duration).ease(r.easing).each("end",(function(){s&&s()})).each("interrupt",(function(){s&&s()})).each((function(){c.selectAll("g.trace").each((function(e){m(t,e,this,r)}))}))):(o.each((function(e){m(t,e,this,r)})),l.uniformtext.mode&&f(t,l._treemaplayer.selectAll(".trace"),"treemap"));h&&o.exit().remove()}},{"../../lib":778,"../bar/constants":923,"../bar/plot":932,"../bar/style":935,"../bar/uniform_text":937,"../sunburst/helpers":1305,"./constants":1328,"./draw_ancestors":1330,"./draw_descendants":1331,d3:169}],1337:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../../lib"),o=t("../sunburst/helpers"),s=t("../bar/uniform_text").resizeText;function l(t,e,r,n){var s,l,c=(n||{}).hovered,u=e.data.data,f=u.i,h=u.color,p=o.isHierarchyRoot(e),d=1;if(c)s=r._hovered.marker.line.color,l=r._hovered.marker.line.width;else if(p&&h===r.root.color)d=100,s="rgba(0,0,0,0)",l=0;else if(s=a.castOption(r,f,"marker.line.color")||i.defaultLine,l=a.castOption(r,f,"marker.line.width")||0,!r._hasColorscale&&!e.onPathbar){var g=r.marker.depthfade;if(g){var m,v=i.combine(i.addOpacity(r._backgroundColor,.75),h);if(!0===g){var y=o.getMaxDepth(r);m=isFinite(y)?o.isLeaf(e)?0:r._maxVisibleLayers-(e.data.depth-r._entryDepth):e.data.height+1}else m=e.data.depth-r._entryDepth,r._atRootLevel||m++;if(m>0)for(var x=0;x0){var y,x,b,_,w,T=t.xa,k=t.ya;"h"===h.orientation?(w=e,y="y",b=k,x="x",_=T):(w=r,y="x",b=T,x="y",_=k);var M=f[t.index];if(w>=M.span[0]&&w<=M.span[1]){var A=n.extendFlat({},t),S=_.c2p(w,!0),E=o.getKdeValue(M,h,w),C=o.getPositionOnKdePath(M,h,S),L=b._offset,I=b._length;A[y+"0"]=C[0],A[y+"1"]=C[1],A[x+"0"]=A[x+"1"]=S,A[x+"Label"]=x+": "+i.hoverLabelText(_,w)+", "+f[0].t.labels.kde+" "+E.toFixed(3),A.spikeDistance=v[0].spikeDistance;var P=y+"Spike";A[P]=v[0][P],v[0].spikeDistance=void 0,v[0][P]=void 0,A.hovertemplate=!1,m.push(A),(u={stroke:t.color})[y+"1"]=n.constrain(L+C[0],L,L+I),u[y+"2"]=n.constrain(L+C[1],L,L+I),u[x+"1"]=u[x+"2"]=_._offset+S}}d&&(m=m.concat(v))}-1!==p.indexOf("points")&&(c=a.hoverOnPoints(t,e,r));var z=l.selectAll(".violinline-"+h.uid).data(u?[0]:[]);return z.enter().append("line").classed("violinline-"+h.uid,!0).attr("stroke-width",1.5),z.exit().remove(),z.attr(u),"closest"===s?c?[c]:m:c?(m.push(c),m):m}},{"../../lib":778,"../../plots/cartesian/axes":828,"../box/hover":951,"./helpers":1342}],1344:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults"),crossTraceDefaults:t("../box/defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style"),styleOnSelect:t("../scatter/style").styleOnSelect,hoverPoints:t("./hover"),selectPoints:t("../box/select"),moduleType:"trace",name:"violin",basePlotModule:t("../../plots/cartesian"),categories:["cartesian","svg","symbols","oriented","box-violin","showLegend","violinLayout","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../box/defaults":949,"../box/select":956,"../scatter/style":1211,"./attributes":1338,"./calc":1339,"./cross_trace_calc":1340,"./defaults":1341,"./hover":1343,"./layout_attributes":1345,"./layout_defaults":1346,"./plot":1347,"./style":1348}],1345:[function(t,e,r){"use strict";var n=t("../box/layout_attributes"),i=t("../../lib").extendFlat;e.exports={violinmode:i({},n.boxmode,{}),violingap:i({},n.boxgap,{}),violingroupgap:i({},n.boxgroupgap,{})}},{"../../lib":778,"../box/layout_attributes":953}],1346:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes"),a=t("../box/layout_defaults");e.exports=function(t,e,r){a._supply(t,e,r,(function(r,a){return n.coerce(t,e,i,r,a)}),"violin")}},{"../../lib":778,"../box/layout_defaults":954,"./layout_attributes":1345}],1347:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../lib"),a=t("../../components/drawing"),o=t("../box/plot"),s=t("../scatter/line_points"),l=t("./helpers");e.exports=function(t,e,r,c){var u=t._fullLayout,f=e.xaxis,h=e.yaxis;function p(t){var e=s(t,{xaxis:f,yaxis:h,connectGaps:!0,baseTolerance:.75,shape:"spline",simplify:!0,linearized:!0});return a.smoothopen(e[0],1)}i.makeTraceGroups(c,r,"trace violins").each((function(t){var r=n.select(this),a=t[0],s=a.t,c=a.trace;if(!0!==c.visible||s.empty)r.remove();else{var d=s.bPos,g=s.bdPos,m=e[s.valLetter+"axis"],v=e[s.posLetter+"axis"],y="both"===c.side,x=y||"positive"===c.side,b=y||"negative"===c.side,_=r.selectAll("path.violin").data(i.identity);_.enter().append("path").style("vector-effect","non-scaling-stroke").attr("class","violin"),_.exit().remove(),_.each((function(t){var e,r,i,a,o,l,f,h,_=n.select(this),w=t.density,T=w.length,k=v.c2l(t.pos+d,!0),M=v.l2p(k);if(c.width)e=s.maxKDE/g;else{var A=u._violinScaleGroupStats[c.scalegroup];e="count"===c.scalemode?A.maxKDE/g*(A.maxCount/t.pts.length):A.maxKDE/g}if(x){for(f=new Array(T),o=0;o<T;o++)(h=f[o]={})[s.posLetter]=k+w[o].v/e,h[s.valLetter]=m.c2l(w[o].t,!0);r=p(f)}if(b){for(f=new Array(T),l=0,o=T-1;l<T;l++,o--)(h=f[l]={})[s.posLetter]=k-w[o].v/e,h[s.valLetter]=m.c2l(w[o].t,!0);i=p(f)}if(y)a=r+"L"+i.substr(1)+"Z";else{var S=[M,m.c2p(w[0].t)],E=[M,m.c2p(w[T-1].t)];"h"===c.orientation&&(S.reverse(),E.reverse()),a=x?"M"+S+"L"+r.substr(1)+"L"+E:"M"+E+"L"+i.substr(1)+"L"+S}_.attr("d",a),t.posCenterPx=M,t.posDensityScale=e*g,t.path=_.node(),t.pathLength=t.path.getTotalLength()/(y?2:1)}));var w,T,k,M=c.box,A=M.width,S=(M.line||{}).width;y?(w=g*A,T=0):x?(w=[0,g*A/2],T=S*{x:1,y:-1}[s.posLetter]):(w=[g*A/2,0],T=S*{x:-1,y:1}[s.posLetter]),o.plotBoxAndWhiskers(r,{pos:v,val:m},c,{bPos:d,bdPos:w,bPosPxOffset:T}),o.plotBoxMean(r,{pos:v,val:m},c,{bPos:d,bdPos:w,bPosPxOffset:T}),!c.box.visible&&c.meanline.visible&&(k=i.identity);var E=r.selectAll("path.meanline").data(k||[]);E.enter().append("path").attr("class","meanline").style("fill","none").style("vector-effect","non-scaling-stroke"),E.exit().remove(),E.each((function(t){var e=m.c2p(t.mean,!0),r=l.getPositionOnKdePath(t,c,e);n.select(this).attr("d","h"===c.orientation?"M"+e+","+r[0]+"V"+r[1]:"M"+r[0]+","+e+"H"+r[1])})),o.plotPoints(r,{x:f,y:h},c,s)}}))}},{"../../components/drawing":665,"../../lib":778,"../box/plot":955,"../scatter/line_points":1201,"./helpers":1342,d3:169}],1348:[function(t,e,r){"use strict";var n=t("d3"),i=t("../../components/color"),a=t("../scatter/style").stylePoints;e.exports=function(t){var e=n.select(t).selectAll("g.trace.violins");e.style("opacity",(function(t){return t[0].trace.opacity})),e.each((function(e){var r=e[0].trace,o=n.select(this),s=r.box||{},l=s.line||{},c=r.meanline||{},u=c.width;o.selectAll("path.violin").style("stroke-width",r.line.width+"px").call(i.stroke,r.line.color).call(i.fill,r.fillcolor),o.selectAll("path.box").style("stroke-width",l.width+"px").call(i.stroke,l.color).call(i.fill,s.fillcolor);var f={"stroke-width":u+"px","stroke-dasharray":2*u+"px,"+u+"px"};o.selectAll("path.mean").style(f).call(i.stroke,c.color),o.selectAll("path.meanline").style(f).call(i.stroke,c.color),a(o,r,t)}))}},{"../../components/color":643,"../scatter/style":1211,d3:169}],1349:[function(t,e,r){"use strict";var n=t("../../components/colorscale/attributes"),i=t("../isosurface/attributes"),a=t("../surface/attributes"),o=t("../../plots/attributes"),s=t("../../lib/extend").extendFlat,l=t("../../plot_api/edit_types").overrideAll,c=e.exports=l(s({x:i.x,y:i.y,z:i.z,value:i.value,isomin:i.isomin,isomax:i.isomax,surface:i.surface,spaceframe:{show:{valType:"boolean",dflt:!1},fill:{valType:"number",min:0,max:1,dflt:1}},slices:i.slices,caps:i.caps,text:i.text,hovertext:i.hovertext,hovertemplate:i.hovertemplate},n("",{colorAttr:"`value`",showScaleDflt:!0,editTypeOverride:"calc"}),{colorbar:i.colorbar,opacity:i.opacity,opacityscale:a.opacityscale,lightposition:i.lightposition,lighting:i.lighting,flatshading:i.flatshading,contour:i.contour,hoverinfo:s({},o.hoverinfo),showlegend:s({},o.showlegend,{dflt:!1})}),"calc","nested");c.x.editType=c.y.editType=c.z.editType=c.value.editType="calc+clearAxisTypes",c.transforms=void 0},{"../../components/colorscale/attributes":650,"../../lib/extend":768,"../../plot_api/edit_types":810,"../../plots/attributes":824,"../isosurface/attributes":1123,"../surface/attributes":1311}],1350:[function(t,e,r){"use strict";var n=t("gl-mesh3d"),i=t("../../lib/gl_format_color").parseColorScale,a=t("../../lib/str2rgbarray"),o=t("../../components/colorscale").extractOpts,s=t("../../plots/gl3d/zip3"),l=t("../isosurface/convert").findNearestOnAxis,c=t("../isosurface/convert").generateIsoMeshes;function u(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name="",this.data=null,this.showContour=!1}var f=u.prototype;f.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._meshX[e],n=this.data._meshY[e],i=this.data._meshZ[e],a=this.data._Ys.length,o=this.data._Zs.length,s=l(r,this.data._Xs).id,c=l(n,this.data._Ys).id,u=l(i,this.data._Zs).id,f=t.index=u+o*c+o*a*s;t.traceCoordinate=[this.data._meshX[f],this.data._meshY[f],this.data._meshZ[f],this.data._value[f]];var h=this.data.hovertext||this.data.text;return Array.isArray(h)&&void 0!==h[f]?t.textLabel=h[f]:h&&(t.textLabel=h),!0}},f.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map((function(e){return t.d2l(e,0,n)*r}))}this.data=c(t);var l={positions:s(n(r.xaxis,t._meshX,e.dataScale[0],t.xcalendar),n(r.yaxis,t._meshY,e.dataScale[1],t.ycalendar),n(r.zaxis,t._meshZ,e.dataScale[2],t.zcalendar)),cells:s(t._meshI,t._meshJ,t._meshK),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,opacityscale:t.opacityscale,contourEnable:t.contour.show,contourColor:a(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},u=o(t);l.vertexIntensity=t._meshIntensity,l.vertexIntensityBounds=[u.min,u.max],l.colormap=i(t),this.mesh.update(l)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new u(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}},{"../../components/colorscale":655,"../../lib/gl_format_color":774,"../../lib/str2rgbarray":802,"../../plots/gl3d/zip3":881,"../isosurface/convert":1125,"gl-mesh3d":309}],1351:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./attributes"),a=t("../isosurface/defaults").supplyIsoDefaults,o=t("../surface/defaults").opacityscaleDefaults;e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,i,r,a)}a(t,e,r,s,l),o(t,e,s,l)}},{"../../lib":778,"../isosurface/defaults":1126,"../surface/defaults":1314,"./attributes":1349}],1352:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),supplyDefaults:t("./defaults"),calc:t("../isosurface/calc"),colorbar:{min:"cmin",max:"cmax"},plot:t("./convert"),moduleType:"trace",name:"volume",basePlotModule:t("../../plots/gl3d"),categories:["gl3d","showLegend"],meta:{}}},{"../../plots/gl3d":870,"../isosurface/calc":1124,"./attributes":1349,"./convert":1350,"./defaults":1351}],1353:[function(t,e,r){"use strict";var n=t("../bar/attributes"),i=t("../scatter/attributes").line,a=t("../../plots/attributes"),o=t("../../plots/template_attributes").hovertemplateAttrs,s=t("../../plots/template_attributes").texttemplateAttrs,l=t("./constants"),c=t("../../lib/extend").extendFlat,u=t("../../components/color");function f(t){return{marker:{color:c({},n.marker.color,{arrayOk:!1,editType:"style"}),line:{color:c({},n.marker.line.color,{arrayOk:!1,editType:"style"}),width:c({},n.marker.line.width,{arrayOk:!1,editType:"style"}),editType:"style"},editType:"style"},editType:"style"}}e.exports={measure:{valType:"data_array",dflt:[],editType:"calc"},base:{valType:"number",dflt:null,arrayOk:!1,editType:"calc"},x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},a.hoverinfo,{flags:["name","x","y","text","initial","delta","final"]}),textinfo:{valType:"flaglist",flags:["label","text","initial","delta","final"],extras:["none"],editType:"plot",arrayOk:!1},texttemplate:s({editType:"plot"},{keys:l.eventDataKeys.concat(["label"])}),text:n.text,textposition:n.textposition,insidetextanchor:n.insidetextanchor,textangle:n.textangle,textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:n.orientation,offset:n.offset,width:n.width,increasing:f(),decreasing:f(),totals:f(),connector:{line:{color:c({},i.color,{dflt:u.defaultLine}),width:c({},i.width,{editType:"plot"}),dash:i.dash,editType:"plot"},mode:{valType:"enumerated",values:["spanning","between"],dflt:"between",editType:"plot"},visible:{valType:"boolean",dflt:!0,editType:"plot"},editType:"plot"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{"../../components/color":643,"../../lib/extend":768,"../../plots/attributes":824,"../../plots/template_attributes":906,"../bar/attributes":921,"../scatter/attributes":1187,"./constants":1355}],1354:[function(t,e,r){"use strict";var n=t("../../plots/cartesian/axes"),i=t("../../plots/cartesian/align_period"),a=t("../../lib").mergeArray,o=t("../scatter/calc_selection"),s=t("../../constants/numerical").BADNUM;function l(t){return"a"===t||"absolute"===t}function c(t){return"t"===t||"total"===t}e.exports=function(t,e){var r,u,f,h,p=n.getFromId(t,e.xaxis||"x"),d=n.getFromId(t,e.yaxis||"y");"h"===e.orientation?(r=p.makeCalcdata(e,"x"),f=d.makeCalcdata(e,"y"),u=i(e,d,"y",f),h=!!e.yperiodalignment):(r=d.makeCalcdata(e,"y"),f=p.makeCalcdata(e,"x"),u=i(e,p,"x",f),h=!!e.xperiodalignment);for(var g,m=Math.min(u.length,r.length),v=new Array(m),y=0,x=!1,b=0;b")),c.color=function(t,e){var r=t[e.dir].marker,n=r.color,a=r.line.color,o=r.line.width;if(i(n))return n;if(i(a)&&o)return a}(f,d),[c]}function w(t){return n(p,t)}}},{"../../components/color":643,"../../constants/delta.js":747,"../../plots/cartesian/axes":828,"../bar/hover":928}],1360:[function(t,e,r){"use strict";e.exports={attributes:t("./attributes"),layoutAttributes:t("./layout_attributes"),supplyDefaults:t("./defaults").supplyDefaults,crossTraceDefaults:t("./defaults").crossTraceDefaults,supplyLayoutDefaults:t("./layout_defaults"),calc:t("./calc"),crossTraceCalc:t("./cross_trace_calc"),plot:t("./plot"),style:t("./style").style,hoverPoints:t("./hover"),eventData:t("./event_data"),selectPoints:t("../bar/select"),moduleType:"trace",name:"waterfall",basePlotModule:t("../../plots/cartesian"),categories:["bar-like","cartesian","svg","oriented","showLegend","zoomScale"],meta:{}}},{"../../plots/cartesian":841,"../bar/select":933,"./attributes":1353,"./calc":1354,"./cross_trace_calc":1356,"./defaults":1357,"./event_data":1358,"./hover":1359,"./layout_attributes":1361,"./layout_defaults":1362,"./plot":1363,"./style":1364}],1361:[function(t,e,r){"use strict";e.exports={waterfallmode:{valType:"enumerated",values:["group","overlay"],dflt:"group",editType:"calc"},waterfallgap:{valType:"number",min:0,max:1,editType:"calc"},waterfallgroupgap:{valType:"number",min:0,max:1,dflt:0,editType:"calc"}}},{}],1362:[function(t,e,r){"use strict";var n=t("../../lib"),i=t("./layout_attributes");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s0&&(m+=h?"M"+f[0]+","+d[1]+"V"+d[0]:"M"+f[1]+","+d[0]+"H"+f[0]),"between"!==p&&(r.isSum||s path").each((function(t){if(!t.isBlank){var e=s[t.dir].marker;n.select(this).call(a.fill,e.color).call(a.stroke,e.line.color).call(i.dashLine,e.line.dash,e.line.width).style("opacity",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(".lines").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll("path"),t.width,t.color,t.dash)}))}))}}},{"../../components/color":643,"../../components/drawing":665,"../../constants/interactions":752,"../bar/style":935,"../bar/uniform_text":937,d3:169}],1365:[function(t,e,r){"use strict";var n=t("../plots/cartesian/axes"),i=t("../lib"),a=t("../plot_api/plot_schema"),o=t("./helpers").pointsAccessorFunction,s=t("../constants/numerical").BADNUM;r.moduleType="transform",r.name="aggregate";var l=r.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc"},groups:{valType:"string",strict:!0,noBlank:!0,arrayOk:!0,dflt:"x",editType:"calc"},aggregations:{_isLinkedToArray:"aggregation",target:{valType:"string",editType:"calc"},func:{valType:"enumerated",values:["count","sum","avg","median","mode","rms","stddev","min","max","first","last","change","range"],dflt:"first",editType:"calc"},funcmode:{valType:"enumerated",values:["sample","population"],dflt:"sample",editType:"calc"},enabled:{valType:"boolean",dflt:!0,editType:"calc"},editType:"calc"},editType:"calc"},c=l.aggregations;function u(t,e,r,a){if(a.enabled){for(var o=a.target,l=i.nestedProperty(e,o),c=l.get(),u=function(t,e){var r=t.func,n=e.d2c,a=e.c2d;switch(r){case"count":return f;case"first":return h;case"last":return p;case"sum":return function(t,e){for(var r=0,i=0;ii&&(i=u,o=c)}}return i?a(o):s};case"rms":return function(t,e){for(var r=0,i=0,o=0;o":return function(t){return h(t)>s};case">=":return function(t){return h(t)>=s};case"[]":return function(t){var e=h(t);return e>=s[0]&&e<=s[1]};case"()":return function(t){var e=h(t);return e>s[0]&&e=s[0]&&es[0]&&e<=s[1]};case"][":return function(t){var e=h(t);return e<=s[0]||e>=s[1]};case")(":return function(t){var e=h(t);return es[1]};case"](":return function(t){var e=h(t);return e<=s[0]||e>s[1]};case")[":return function(t){var e=h(t);return e=s[1]};case"{}":return function(t){return-1!==s.indexOf(h(t))};case"}{":return function(t){return-1===s.indexOf(h(t))}}}(r,a.getDataToCoordFunc(t,e,s,i),h),x={},b={},_=0;d?(m=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set(new Array(f))},v=function(t,e){var r=x[t.astr][e];t.get()[e]=r}):(m=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set([])},v=function(t,e){var r=x[t.astr][e];t.get().push(r)}),k(m);for(var w=o(e.transforms,r),T=0;T<f;T++){y(i[T])?(k(v,T),b[_++]=w(T)):d&&_++}r._indexToPoints=b,e._length=_}}function k(t,r){for(var i=0;i<p.length;i++){t(n.nestedProperty(e,p[i]),r)}}}},{"../constants/filter_ops":749,"../lib":778,"../plots/cartesian/axes":828,"../registry":911,"./helpers":1368}],1367:[function(t,e,r){"use strict";var n=t("../lib"),i=t("../plot_api/plot_schema"),a=t("../plots/plots"),o=t("./helpers").pointsAccessorFunction;function s(t,e){var r,s,l,c,u,f,h,p,d,g,m=e.transform,v=e.transformIndex,y=t.transforms[v].groups,x=o(t.transforms,m);if(!n.isArrayOrTypedArray(y)||0===y.length)return[t];var b=n.filterUnique(y),_=new Array(b.length),w=y.length,T=i.findArrayAttributes(t),k=m.styles||[],M={};for(r=0;r<k.length;r++)M[k[r].target]=k[r].value;m.styles&&(g=n.keyedContainer(m,"styles","target","value.name"));var A={},S={};for(r=0;r<b.length;r++){A[f=b[r]]=r,S[f]=0,(h=_[r]=n.extendDeepNoArrays({},t))._group=f,h.transforms[v]._indexToPoints={};var E=null;for(g&&(E=g.get(f)),h.name=E||""===E?E:n.templateString(m.nameformat,{trace:t.name,group:f}),p=h.transforms,h.transforms=[],s=0;s<p.length;s++)h.transforms[s]=n.extendDeepNoArrays({},p[s]);for(s=0;s<T.length;s++)n.nestedProperty(h,T[s]).set([])}for(l=0;l<T.length;l++){for(c=T[l],s=0,d=[];s<b.length;s++)d[s]=n.nestedProperty(_[s],c).get();for(u=n.nestedProperty(t,c).get(),s=0;s<w;s++)d[A[y[s]]].push(u[s])}for(s=0;s<w;s++){(h=_[A[y[s]]]).transforms[v]._indexToPoints[S[y[s]]]=x(s),S[y[s]]++}for(r=0;r<b.length;r++)f=b[r],h=_[r],a.clearExpandedTraceDefaultColors(h),h=n.extendDeepNoArrays(h,M[f]||{});return _}r.moduleType="transform",r.name="groupby",r.attributes={enabled:{valType:"boolean",dflt:!0,editType:"calc"},groups:{valType:"data_array",dflt:[],editType:"calc"},nameformat:{valType:"string",editType:"calc"},styles:{_isLinkedToArray:"style",target:{valType:"string",editType:"calc"},value:{valType:"any",dflt:{},editType:"calc",_compareAsJSON:!0},editType:"calc"},editType:"calc"},r.supplyDefaults=function(t,e,i){var a,o={};function s(e,i){return n.coerce(t,o,r.attributes,e,i)}if(!s("enabled"))return o;s("groups"),s("nameformat",i._dataLength>1?"%{group} (%{trace})":"%{group}");var l=t.styles,c=o.styles=[];if(l)for(a=0;a
(mp-1178770)
-3.848 eV/atom (+0.123 eV/atom)", "Y2, "width": 3}, "opacity": 0.8, "size": 12}, "mode": "markers", "name": "Stable", "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3, "opacity": 0.8, "size": 12}, "mode": "markers", "name": "Stable", "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-558573)
-3.923 eV/atom (+0.048 eV/atom)", "Y2, "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3": true, "type": "scatter3d", "x": [0.5196152422706631, 0.0, 0.4330127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-13061)
-3.899 eV/atom (+0.072 eV/atom)", "Y230127018922193, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O33, 0.0, 0.49487165930539345, 0.5412658773652741, 0.5196152422706631, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-775906)
-3.908 eV/atom (+0.063 eV/atom)", "Y21, 0.8660254037844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn37844386], "y": [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O9: [0.3, 0.0, 0.75, 1.0, 0.7142857142857142, 0.5625, 0.5, 0.5], "z": [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-1350656)
-2.526 eV/atom (+0.122 eV/atom)", "Y6 [-2.871, 0.0, -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn2 -0.978, 0.0, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 3, -0.928, -1.507, -1.956, 0.0]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -2.583678301135969}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-1355)
0.096 eV/atom (+0.098 eV/atom)"], "marker": {"color": [0.012, 0.001, 0.03, 0.124, 0.002, 0.126, 0.018, 0.01, 0.145, 0.083, 0.053, 0.08, 0.005, 0.003, 0.03, 0.152, 0.006, 0.025, 0.172, 0.192, 0.014, 0.095, 0.097, 0.015, 0.168, 0.191, 0.03, 0.187, 0.187, 0.174, 0.077, 0.0, 0.059, 0.076, 0.05, 0.088, 0.17, 0.055, 0.186, 0.009, 0.093, 0.132, 0.044, 0.024, 0.004, 0.007, 0.182, 0.021, 0.134, 0.162, 0.093, 0.14, 0.172, 0.157, 0.051, 0.053, 0.09, 0.123, 0.048, 0.072, 0.063, 0.122, 0.098], "colorbar": {"len": 0.75, "title": {"text": "Energy Above Hull
(eV/atom)"}, "x": 0.05}, "colorscale": [[0.0, "#fad393"], [0.5, "#ff813d"], [1.0, "#ff0000"]], "size": 6, "symbol": "diamond"}, "mode": "markers", "name": "Above Hull", "showlegend": true, "type": "scatter3d", "x": [0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.8660254037844386, 0.0, 0.0, 0.0, 0.4330127018922193, 0.4330127018922193, 0.4330127018922193, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5773502691896257, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.6735753140545634, 0.49487165930539345, 0.49487165930539345, 0.532938710021193, 0.5888972745734183, 0.5910967041703311, 0.5678855106783204, 0.0, 0.0, 0.0, 0.5773502691896257, 0.5196152422706631, 0.0, 0.0, 0.49487165930539345, 0.49487165930539345, 0.49487165930539345, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5196152422706631, 0.5567306167185677, 0.0], "y": [0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 0.5, 1.0, 1.0, 1.0, 0.75, 0.75, 0.75, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.6666666666666666, 0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 0.6111111111111112, 0.7142857142857142, 0.7142857142857142, 0.6923076923076923, 0.66, 0.6587301587301587, 0.6721311475409836, 0.0, 0.0, 0.0, 0.3333333333333333, 0.5, 0.6666666666666666, 0.6666666666666666, 0.5714285714285714, 0.5714285714285714, 0.5714285714285714, 0.6, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.3, 0.5357142857142857, 0.7931034482758621], "z": [0.012, 0.001, 0.03, 0.124, 0.002, 0.126, 0.018, 0.01, 0.145, 0.083, 0.053, -1.899, -1.974, -1.976, -1.776, -1.654, -1.799, -1.78, -1.634, -1.614, -1.792, -1.711, -1.709, -1.791, -1.638, -1.615, -1.776, -1.619, -1.619, -1.632, -1.937, -2.014, -1.955, -1.938, -1.964, -1.926, -1.034, -1.995, -1.864, -1.957, -1.641, -1.588, -1.796, 0.024, 0.004, 0.007, -3.127, -3.015, 0.133, 0.161, -2.641, -2.594, -2.562, -2.375, -3.919, -3.918, -3.881, -3.848, -3.923, -3.899, -3.908, -2.526, 0.096]}, {"error_z": {"array": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "color": "darkgray", "thickness": 5, "type": "data", "width": 10}, "hoverinfo": "text", "hoverlabel": {"font": {"size": 14}}, "hovertext": ["Y26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-2652)
-3.971 eV/atom", "O2"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-12957)
0.0 eV/atom", "YMn2colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O5[[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-510598)
-2.639 eV/atom", "Y2], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-18831)
-2.878 eV/atom", "Mn2444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3 "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-1172875)
-2.014 eV/atom", "YMn16666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 26, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-22508)
-0.001 eV/atom", "Mn (mp-35)
0.0 eV/atom", "YMnO31.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-19385)
-3.036 eV/atom", "MnO2m": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-19395)
-1.806 eV/atom", "Y (mp-1187739)
0.0 eV/atom", "Mn3], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O42d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (mp-18759)
-2.05 eV/atom", "MnO (mp-19006)
-1.979 eV/atom"], "marker": {"color": "black", "line": {"color": "black", "width": 3}, "opacity": 0.8, "size": 12}, "mode": "markers", "name": "Stable", "showlegend": true, "type": "scatter3d", "x": [0.5196152422706631, 0.8660254037844386, 0.5412658773652741, 0.5511070751355518, 0.5196152422706631, 0.0, 0.0, 0.5196152422706631, 0.5773502691896257, 0.0, 0.49487165930539345, 0.4330127018922193], "y": [0.3, 0.5, 0.5625, 0.5, 0.7, 0.9230769230769231, 1.0, 0.5, 0.6666666666666666, 0.0, 0.7142857142857142, 0.75], "z": [-3.971, 0.0, -2.639, -2.878, -2.014, -0.001, 0.0, -3.036, -1.806, 0.0, -2.05, -1.979]}], {"autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "traceorder": "reversed", "x": 0.5, "xanchor": "center", "y": 0.0, "yanchor": "top"}, "margin": {"b": 10, "l": 0, "pad": 0, "r": 0, "t": 0}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "scene": {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "O", "x": 0.8660254037844386, "xanchor": "right", "xshift": -10, "y": 0.5, "yanchor": "auto", "yshift": -10, "z": -3.5738280696750007}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Mn", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 1.0, "yanchor": "auto", "yshift": -10, "z": -3.5738280696750007}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "right", "xshift": -10, "y": 0.0, "yanchor": "auto", "yshift": -10, "z": -3.5738280696750007}, {"opacity": 0, "text": "", "x": 1, "y": 1, "z": 0}], "aspectratio": {"x": 1.7, "y": 1.7, "z": 1.2}, "camera": {"center": {"x": -0.1, "y": 0, "z": -0.15}, "eye": {"x": -0.1, "y": 0, "z": 2.5}, "projection": {"type": "orthographic"}}, "xaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "yaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}, "zaxis": {"autorange": true, "showaxeslabels": false, "showgrid": false, "showline": false, "showspikes": false, "showticklabels": false, "ticks": "", "visible": false, "zeroline": false}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('01b4b706-bf08-40f5-951e-420182831e10'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); >

var gd = document.getElementById('ceb0edf5-5187-46c5-92e6-26ef81533b3e'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }});

// Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }}

// Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }}

                    })                };                });            </script>

The default backend for plotting phase diagrams is plotly, however, you can also specify matplotlib:

plotter = PDPlotter(pd, backend="matplotlib")
plotter.get_plot(label_unstable=False).show()

From the phase diagram, we see that there are three ternary oxides within the system: YMnO\(_3\), YMn\(_2\)O\(_5\), and Y\(_2\)Mn\(_2\)O\(_7\).

Let's look at formation energy data in a pandas DataFrame. As before, let's first create a helper function to wrangle the data into the correct format:

def get_df_from_pd(pd):
    ents = pd.stable_entries

    formulas = [e.composition.reduced_formula for e in ents]
    form_energies = [pd.get_form_energy_per_atom(e) for e in ents]
    decomp_enthalpies = [pd.get_phase_separation_energy(e) for e in ents]

    data = {"formula": formulas, "form_energy (eV/atom)": form_energies, "decomp_enthalpy (eV/atom)": decomp_enthalpies}

    df = pandas.DataFrame(data).sort_values("form_energy (eV/atom)").reset_index(drop=True)

    return df

We then call this function to get the data frame:

get_df_from_pd(pd)
="cell border-box-sizing code_cell rendered" markdown="1"> formula"> form_energy (eV/atom)div class="cell border-box-sizing text_cell rendered" markdown="1"> decomp_enthalpy (eV/atom)lass="cell border-box-sizing text_cell rendered" markdown="1"> iv> div>
0"cell border-box-sizing text_cell rendered" markdown="1"> Y2O3ner_cell" markdown="1"> -3.970920ll_render border-box-sizing rendered_html" markdown="1"> -0.856833the grand potential phase diagram and plot it: v>
1 class="cell border-box-sizing code_cell rendered" markdown="1"> YMnO3l border-box-sizing code_cell rendered" markdown="1"> -3.036007
gpd = GrandPotentialPhaseDiagram(gibbs_entries, {open_elem: chempot})
gpd.get_plot()
-0.029013v> hzdk:36
2v class="output_wrapper" markdown="1"> Y2Mn2O7ut_wrapper" markdown="1"> -2.877818wrapper" markdown="1"> -0.056013 markdown="1"> v class="output_area" markdown="1">
3="output_html rendered_html output_subarea "> YMn2O5ut_html rendered_html output_subarea "> -2.639070
-0.031220getElementById('3dd8a1ee-ccc2-4fba-bf26-dac4e1b8a911'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); gd = document.getElementById('3dd8a1ee-ccc2-4fba-bf26-dac4e1b8a911'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
4 display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn3O4splay || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -2.050443.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.046443purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
5sten for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn2O3the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -2.013920emoval of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.024500er = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
6en for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); MnOr the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -1.979201learing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.185063losest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
7 }) }; }); MnO2 }) }; }); -1.805830 }) }; }); -0.066579iv> iv>
8iv> YMn12 -0.001407 class="cell border-box-sizing text_cell rendered" markdown="1"> -0.001407"cell border-box-sizing text_cell rendered" markdown="1"> v>
9"inner_cell" markdown="1"> O2text_cell_render border-box-sizing rendered_html" markdown="1"> 0.000000ential phase diagram above, we see that only YMn$_2$O$_5$ and Y$_2$Mn$_2$O$_7$ are stable at a relative oxygen chemical potential of 0 eV at T = 1000 K. This corresponds to flowing (open) oxygen gas at the standard state of pressure of 0.1 MPa (close to 1 atm). Note that the phase diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value. 0.000000se diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value. that the phase diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value.
10> Mnclass="cell border-box-sizing text_cell rendered" markdown="1"> 0.000000order-box-sizing text_cell rendered" markdown="1"> 0.000000cell" markdown="1"> class="text_cell_render border-box-sizing rendered_html" markdown="1">
11he partial pressure of oxygen (at T = 1000 K) where YMnO$_3$ becomes stable. **Hint:** *Determine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ Yhe partial pressure of oxygen (at T = 1000 K) where YMnO$_3$ becomes stable. **Hint:** *Determine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ 0.000000ine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ 0.000000ne the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:* $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} $$

While YMnO\(_3\) has one of the lowest formation energies within the Y-Mn-O system, it's decomposition enthalpy (i.e., energy "below" hull) is not very negative compared to the other phases in the system. This suggests that it has a low relative stability compared to the neighboring phases.

This is largely due to the fact that Y\(_2\)O\(_3\) is a massive thermodynamic sink -- it has both the most negative formation energy and the most negative decomposition enthalpy. This can be confirmed by looking at the green color-shading on the ternary phase diagram.

2.3 Compound phase diagrams for plotting subsets of the convex hull

The previous analysis partially explains why synthesis routes to YMnO\(_3\) from the starting binary oxides (i.e. Y\(_2\)O\(_3\) and Mn\(_2\)O\(_3\)) require such high temperatures to proceed. We can take a slice of the hull with the CompoundPhaseDiagram to visualize this more clearly. First, let's import the module:

from pymatgen.analysis.phase_diagram import CompoundPhaseDiagram

Before we can make the compound phase diagram, we have to specify the terminal compositions as Composition objects within pymatgen:

from pymatgen.core.composition import Composition
terminal_comps = [Composition("Y2O3"), Composition("Mn2O3")]

Now we can initialize the compound phase diagram object and plot it:

cpd = CompoundPhaseDiagram(entries, terminal_comps)
PDPlotter(cpd).get_plot()

An important note: the reaction energy associated with the ComputedReaction object is eV per mole of reaction (i.e. per mole of YMnO\(_3\)):

rxn_energy = rxn.calculated_reaction_energy
print(rxn_energy)
-0.21793684385416157

However, if we calculate the number of atoms in the reaction we can normalize this to a reaction energy per atom basis:

num_atoms = sum([rxn.get_el_amount(elem) for elem in rxn.elements])
rxn_energy_per_atom = rxn_energy / num_atoms

print(round(rxn_energy_per_atom, 3))
-0.044
At the interfaces where the powder crystallites touch, if the free energy of the system can be decreased by forming a new phase or set of phases, the new phase(s) will nucleate and grow.

We can predict the possible reactions between the interface of any two phases by drawing a line (see the red dashed line below) connecting the two phases on the phase diagram. A reaction is given by each point where the connecting line intersects the phase diagram points/lines. 

In the hypothetical system below, there are two predicted reactions given by the yellow star and green circle -- in this case **the reaction to form $\gamma$ (green circle) is the most thermodynamically favorable** because it involves the greatest decrease in free energy. However, the reaction given by the yellow star is still favorable and may occur at higher temperatures / later times.

And now we see that the -0.044 eV/atom reaction energy matches with the result from the CompoundPhaseDiagram interface.

Note that the CompoundPhaseDiagram is also useful for plotting subsections of the convex hull:

comps = [Composition(c) for c in ["Y2O3", "Mn2O3", "Y2Mn2O7"]]

example_cpd = CompoundPhaseDiagram(entries, comps)
PDPlotter(example_cpd).get_plot()
(no ID)
0.143 eV/atom (+0.143 eV/atom)", "MnO2idget-view+json"> (no ID)
0.162 eV/atom (+0.162 eV/atom)", "MnO27", "version_major": 2, "version_minor": 0} (no ID)
0.053 eV/atom (+0.053 eV/atom)", "Mn2
O3> (no ID)
0.153 eV/atom (+0.153 eV/atom)", "Mn2rendered" markdown="1">O3kdown="1"> (no ID)
0.154 eV/atom (+0.154 eV/atom)", "Mn2ext_cell_render border-box-sizing rendered_html" markdown="1">O3er border-box-sizing rendered_html" markdown="1"> (no ID)
0.17 eV/atom (+0.17 eV/atom)", "Mn5 let's look at these in a DataFrame by using a helper method:
O8t these in a DataFrame by using a helper method:
(no ID)
0.189 eV/atom (+0.189 eV/atom)", "Y2>O3 class="cell border-box-sizing code_cell rendered" markdown="1"> (no ID)
0.139 eV/atom (+0.139 eV/atom)", "Y21">O3s="input"> (no ID)
0.157 eV/atom (+0.157 eV/atom)", "Y2der-box-sizing code_cell rendered" markdown="1">O3g code_cell rendered" markdown="1"> (no ID)
0.153 eV/atom (+0.153 eV/atom)", "Y2hzdk:52
O3iv> (no ID)
0.175 eV/atom (+0.175 eV/atom)", "YMnO3t" markdown="1"> (no ID)
-0.051 eV/atom (+0.137 eV/atom)", "YMnO3ass="output_html rendered_html output_subarea output_execute_result"> (no ID)
-0.013 eV/atom (+0.174 eV/atom)", "YMnO3lt"> (no ID)
-0.102 eV/atom (+0.086 eV/atom)"], "marker": {"color": [0.062, 0.056, 0.148, 0.143, 0.162, 0.053, 0.153, 0.154, 0.17, 0.189, 0.139, 0.157, 0.153, 0.175, 0.137, 0.174, 0.086], "colorscale": [[0.0, "#fad393"], [0.5, "#ff813d"], [1.0, "#ff0000"]], "size": 6, "symbol": "diamond"}, "mode": "markers", "name": "Above Hull", "showlegend": true, "type": "scatter", "x": [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.5, 0.5, 0.5], "y": [0.06223409118525858, 0.055561615629150296, 0.14833155216471905, 0.1433712401868963, 0.16164928890570884, 0.05348781461188867, 0.15310504044944073, 0.1537806154241248, 0.16996561476060412, 0.18929977492479325, 0.1386944255174356, 0.15666082269634293, 0.15334858999090292, 0.17470772398972656, -0.05050164655535827, -0.013401918050925055, -0.1016229133880439]}, {"error_y": {"array": [0, 0, 0, 0], "color": "gray", "thickness": 2.5, "type": "data", "width": 5}, "hoverinfo": "text", "hoverlabel": {"font": {"size": 14}}, "hovertext": ["Y2 Mn254747O7 (no ID)
-0.187 eV/atom", "YMn2h>O5 (no ID)
-0.19 eV/atom", "MnO204167 Y2O3 (no ID)
0.0 eV/atom", "Y2 O37648 (no ID)
0.0 eV/atom"], "marker": {"color": "darkgreen", "line": {"color": "black", "width": 2}, "size": 11}, "mode": "markers", "name": "Stable", "opacity": 0.9, "showlegend": true, "type": "scatter", "x": [0.5, 0.3333333333333333, 0.0, 1.0], "y": [-0.1873287707060758, -0.18950367667954282, 0.0, 0.0]}], {"annotations": [{"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "MnO2 ", "x": 0.0, "xanchor": "right", "xref": "x", "xshift": -10, "y": 0.0, "yanchor": "auto", "yref": "y", "yshift": -10}, {"align": "center", "font": {"color": "#000000", "size": 24.0}, "opacity": 1.0, "showarrow": false, "text": "Y2 O368154", "x": 1.0, "xanchor": "right", "xref": "x", "xshift": -10, "y": 0.0, "yanchor": "auto", "yref": "y", "yshift": -10}], "autosize": true, "height": 700, "hovermode": "closest", "legend": {"orientation": "h", "tracegroupgap": 7, "traceorder": "reversed", "x": 0, "xanchor": "left", "y": 1.05}, "margin": {"b": 20, "l": 10, "pad": 20, "r": 10, "t": 20}, "paper_bgcolor": "rgba(0,0,0,0)", "plot_bgcolor": "rgba(0,0,0,0)", "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}, "xaxis": {"anchor": "y", "gridcolor": "rgba(0,0,0,0.1)", "mirror": "ticks", "nticks": 8, "showgrid": true, "showline": true, "side": "bottom", "tickfont": {"size": 16.0}, "ticks": "inside", "title": {"font": {"color": "#000000", "size": 20.0}, "text": "Fraction"}, "type": "linear", "zeroline": false}, "yaxis": {"anchor": "x", "gridcolor": "rgba(0,0,0,0.1)", "mirror": "ticks", "showgrid": true, "showline": true, "side": "left", "tickfont": {"size": 16.0}, "ticks": "inside", "title": {"font": {"color": "#000000", "size": 20.0}, "text": "Formation energy (eV/atom)"}, "type": "linear"}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('3dd8a1ee-ccc2-4fba-bf26-dac4e1b8a911'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); down="1">

From the grand potential phase diagram above, we see that only YMn\(_2\)O\(_5\) and Y\(_2\)Mn\(_2\)O\(_7\) are stable at a relative oxygen chemical potential of 0 eV at T = 1000 K. This corresponds to flowing (open) oxygen gas at the standard state of pressure of 0.1 MPa (close to 1 atm).

Note that the phase diagram above corresponds to a binary system, since we have removed a degree of freedom by fixing the oxygen chemical potential to a specific value.

2.5.2 EXERCISE: Determine oxygen stability window of YMnO\(_3\)

Determine the partial pressure of oxygen (at T = 1000 K) where YMnO\(_3\) becomes stable.

Hint: Determine the chemical potential of oxygen from manual phase diagram construction and use the following formula to solve for the pressure:

\[ \mu - \mu^0 = k_b T \ln{\frac{p}{p_0}} \]
from math import exp
k = 8.617e-5  # eV/K
T = 1000  # K

mu_O = -0.343  # found manually from phase diagram construction
mu_O2 = mu_O * 2  
pressure = 0.1*exp(mu_O2/(k*T))  # MPa
print(f"{round(pressure, 7)} MPa")
3.49e-05 MPa
def get_df_from_rxns(rxns):
    energies = [r.energy_per_atom for r in rxns]
    uncertainties = [r.energy_uncertainty_per_atom.s for r in rxns]
    chemsyses = [r.chemical_system for r in rxns]

    data = {"reaction": rxns, "energy": energies, "dE": uncertainties, "chemsys": chemsyses}

    return pandas.DataFrame(data).sort_values("energy").reset_index(drop=True)

This is quite a low O\(_2\) partial pressure. However, note that this value is extremely sensitive to small differences in calculated formation energies for the compounds.

Temperature is often an even more powerful driver for oxidizing/reducing conditions than pressure. In fact, at higher temperatures (T = 1400 K), YMnO\(_3\) is predicted to be stable even at the standard state (0.1 MPa) pressure.

2.5.3 Finding "critical" chemical potentials within pymatgen

As was hinted at above, all phases on the compositional phase diagram are stable within a certain region of chemical potentials. These do not need to be found manually as in the above exercise; instead, there are methods to solve for them algorithmically. In pymatgen, this can be found in the get_chempot_range_stability_phase() method. For YMnO\(_3\), we get:

pd_gibbs = PhaseDiagram(gibbs_entries)
pd_gibbs.get_chempot_range_stability_phase(Composition("YMnO3"), open_elt=Element("O"))
{Element Y: (-5.684675115489506, -8.05964229338205),
 Element Mn: (-1.117928945435541, -3.492896123328084),
 Element O: (-1.9261348812004861, -0.342823429272124)}>

Note that the upper bound value of chemical potential for oxygen matches what we found in the previous exercise (-0.343 eV).

2.6 Plotting predominance diagrams

The chemical potential ranges over which a phase is stable can be plotted in a new diagram, typically called a predominance diagram.

A predominance diagram can be created in pymatgen by calling get_chempot_range_map_plot() on a ternary phase diagram. Because one chemical potential is always dependent, we only need 2 dimensions to represent the chemical potential stability regions. Note: these form polygons, which are not necessarily rectangular.

Note: the -0.343 eV value where YMnO\(_3\) becomes stable is actually the tip of the narrow YMnO\(_3\) polygon!

plotter = PDPlotter(pd_gibbs)
plot = plotter.get_chempot_range_map_plot(elements=[Element("Y"), Element("O")])

plot.xlim(-9.7, -3) # changing plotting boundaries
plot.ylim(-4,0)

plot.show()

2.7 BONUS: Plotting chemical potential diagrams (adding one more dimension!)

It is often even more convenient to visualize all three dimensions within chemical potential space. For this, we can plot a chemical potential diagram. For now, this code only exists in the (separate) reaction-network package, but will be added soon to pymatgen.

from rxn_network.thermo.chempot_diagram import ChempotDiagram

To create the diagram, we first need to define some limits on the chemical potential ranges to plot:

limits={Element("Y"): (-10, 0),
        Element("Mn"): (-10, 0),
        Element("O"): (-7, 0)}

And then we can plot it similar to plotting a conventional phase diagram in pymatgen. Try interacting with the full 3D figure yourself!

cd = ChempotDiagram(pd_gibbs, limits=limits)
cd.get_plot()
O3334049, -0.9878571202804521, -0.9872899029429585, -0.9763547740527354, -0.9752993437371588, -0.9730862995530939, -0.966133947329489, -0.9602591534601709, -0.9530097120055788, -0.9186826538783699, -0.8799079840841728, -0.8685338241181195, -0.8470913183167449, -0.8114562315941917, -0.7945562020195387, -0.7911435444757444, -0.789848836023374, -0.7832133998727533, -0.7789869995919191, -0.7698682492484907, -0.7611243616756599, -0.7513773746193134, -0.7466190036483783, -0.7429360761552188, -0.7245628823632008, -0.7220759849351598, -0.7147206698227438, -0.6530169121041588, -0.6503823787613954, -0.6463707803992377, -0.6432475254076767, -0.641959451536511, -0.6224799080556842, -0.61959992475183, -0.6195365293334537, -0.6104798348607998, -0.6086470916561867, -0.5878815952226052, -0.5710605532029679, -0.5583941274934692, -0.5402400539497964, -0.5394150094527203, -0.530279185725927, -0.5090480209069603, -0.4958464689043356, -0.49442768338169674, -0.49268817494548844, -0.482383666378441, -0.4692951646423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -4.271408180852221, "xanchor": "center", "y": -4.050635932795557, "yanchor": "auto", "z": -2.868312837625343}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "YMn28470913183167449, -0.8114562315941917, -0.7945562020195387, -0.7911435444757444, -0.789848836023374, -0.7832133998727533, -0.7789869995919191, -0.7698682492484907, -0.7611243616756599, -0.7513773746193134, -0.7466190036483783, -0.7429360761552188, -0.7245628823632008, -0.7220759849351598, -0.7147206698227438, -0.6530169121041588, -0.6503823787613954, -0.6463707803992377, -0.6432475254076767, -0.641959451536511, -0.6224799080556842, -0.61959992475183, -0.6195365293334537, -0.6104798348607998, -0.6086470916561867, -0.5878815952226052, -0.5710605532029679, -0.5583941274934692, -0.5402400539497964, -0.5394150094527203, -0.530279185725927, -0.5090480209069603, -0.4958464689043356, -0.49442768338169674, -0.49268817494548844, -0.482383666378441, -0.4692951646423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O5449, -0.8114562315941917, -0.7945562020195387, -0.7911435444757444, -0.789848836023374, -0.7832133998727533, -0.7789869995919191, -0.7698682492484907, -0.7611243616756599, -0.7513773746193134, -0.7466190036483783, -0.7429360761552188, -0.7245628823632008, -0.7220759849351598, -0.7147206698227438, -0.6530169121041588, -0.6503823787613954, -0.6463707803992377, -0.6432475254076767, -0.641959451536511, -0.6224799080556842, -0.61959992475183, -0.6195365293334537, -0.6104798348607998, -0.6086470916561867, -0.5878815952226052, -0.5710605532029679, -0.5583941274934692, -0.5402400539497964, -0.5394150094527203, -0.530279185725927, -0.5090480209069603, -0.4958464689043356, -0.49442768338169674, -0.49268817494548844, -0.482383666378441, -0.4692951646423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -8.43693887604627, "xanchor": "center", "y": -3.2896525805608112, "yanchor": "auto", "z": -0.3467830622162665}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Mn35628823632008, -0.7220759849351598, -0.7147206698227438, -0.6530169121041588, -0.6503823787613954, -0.6463707803992377, -0.6432475254076767, -0.641959451536511, -0.6224799080556842, -0.61959992475183, -0.6195365293334537, -0.6104798348607998, -0.6086470916561867, -0.5878815952226052, -0.5710605532029679, -0.5583941274934692, -0.5402400539497964, -0.5394150094527203, -0.530279185725927, -0.5090480209069603, -0.4958464689043356, -0.49442768338169674, -0.49268817494548844, -0.482383666378441, -0.4692951646423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O4, -0.7220759849351598, -0.7147206698227438, -0.6530169121041588, -0.6503823787613954, -0.6463707803992377, -0.6432475254076767, -0.641959451536511, -0.6224799080556842, -0.61959992475183, -0.6195365293334537, -0.6104798348607998, -0.6086470916561867, -0.5878815952226052, -0.5710605532029679, -0.5583941274934692, -0.5402400539497964, -0.5394150094527203, -0.530279185725927, -0.5090480209069603, -0.4958464689043356, -0.49442768338169674, -0.49268817494548844, -0.482383666378441, -0.4692951646423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -8.405203724663814, "xanchor": "center", "y": -2.157831268455057, "yanchor": "auto", "z": -1.050091084557139}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "YMnO36561867, -0.5878815952226052, -0.5710605532029679, -0.5583941274934692, -0.5402400539497964, -0.5394150094527203, -0.530279185725927, -0.5090480209069603, -0.4958464689043356, -0.49442768338169674, -0.49268817494548844, -0.482383666378441, -0.4692951646423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -7.164435833848591, "xanchor": "center", "y": -2.392480228808132, "yanchor": "auto", "z": -1.008030880623261}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Mn2-0.4692951646423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O3423313, -0.4605509881932589, -0.45263914484372436, -0.45057772972202004, -0.4439448902711589, -0.4272516540509306, -0.42163397569355854, -0.4195142964038215, -0.41290729195070763, -0.4101856911500031, -0.399462268097455, -0.39247389283820444, -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -9.28496850118031, "xanchor": "center", "y": -2.9917842406103996, "yanchor": "auto", "z": -0.4393307729335611}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "MnO2 -0.3911219636767349, -0.3900334992727874, -0.385672843616656, -0.38293496146593364, -0.3718930524841081, -0.3677206458786336, -0.3628110582028559, -0.3593761709273384, -0.3566350104102197, -0.356170205829102, -0.35529219471809353, -0.35140758567474206, -0.3497355715237155, -0.3474814300401367, -0.34195360301042504, -0.34083186767529966, -0.334418100324323, -0.3326710328283608, -0.3312891283175204, -0.32190580559917364, -0.31914652786624165, -0.316099082953608, -0.3147664755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -9.465277774845795, "xanchor": "center", "y": -3.4925214466434893, "yanchor": "auto", "z": -0.15568199690834714}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "MnO", "x": -7.1497114472857985, "xanchor": "center", "y": -0.7822353301933925, "yanchor": "auto", "z": -2.2618284964426345}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "YMn1755809411, -0.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 20.3144195310139996, -0.3051051133144324, -0.3011905507168768, -0.3002462171517351, -0.2986838150763796, -0.29378225713841855, -0.29054742210792145, -0.287284893964309, -0.2821746088349758, -0.27157155434933256, -0.27046271907630254, -0.2682220737759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -0.026186397142013013, "xanchor": "center", "y": -0.0019506591183703127, "yanchor": "auto", "z": -6.349230346716073}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Y2759482, -0.2666338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn26338448161429, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); O7, -0.26648085291089235, -0.26227462824205905, -0.25687665053445413, -0.2566378578858469, -0.2545634965627493, -0.2539875720013527, -0.25327387127471757, -0.25095288130508125, -0.2502409971161638, -0.25006400239451454, -0.249304988059164, -0.24804499448879816, -0.2473955113981902, -0.24738671192335804, -0.24680591904880608, -0.2462235520321357, -0.24445116967069103, -0.2437097162296196, -0.24268662934988522, -0.23682873304115304, -0.227919961360513, -0.22589124118034648, -0.22510336644699075, -0.22217726615442768, -0.21979896660278606, -0.21943147649975464, -0.2180830858819882, -0.2144776693231931, -0.21129352229139492, -0.20221952495505774, -0.19836536657715442, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -8.361956271454577, "xanchor": "center", "y": -3.7858177632510013, "yanchor": "auto", "z": -0.17275610984485373}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Y", "x": 0.0, "xanchor": "center", "y": -5.2797294055823185, "yanchor": "auto", "z": -6.357959145763412}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "Mn", "x": -4.97271125514021, "xanchor": "center", "y": 0.0, "yanchor": "auto", "z": -5.245122563239553}, {"align": "center", "font": {"color": "black", "size": 16.0}, "opacity": 0.7, "showarrow": false, "text": "O242, -0.1951116558329767, -0.19026645430265854, -0.18936186444411152, -0.18877167811288575, -0.18858808907601282, -0.18745790819111308, -0.1870229232598624, -0.18538744733318926, -0.1841133931761701, -0.1820853136329261, -0.17968766648674928, -0.17923115749157517, -0.1789064693713693, -0.16484237519892356, -0.16362160546176235, -0.1623599728462332, -0.15904016844174224, -0.15590748209544605, -0.15206078652717814, -0.14994627459467522, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); ", "x": -9.236047474605448, "xanchor": "center", "y": -6.219695717965241, "yanchor": "auto", "z": 9.322739694342061e-17}], "camera": {"eye": {"x": 0, "y": 0, "z": 2.0}, "projection": {"type": "orthographic"}}, "xaxis": {"backgroundcolor": "rgba(0,0,0,0)", "gridcolor": "#dbdbdb", "gridwidth": 5.0, "showline": true, "tickfont": {"size": 16}, "ticklen": 14, "ticks": "inside", "title": {"font": {"size": 30}, "text": "\u03bcY2, -0.13956442742089903, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); - \u03bcY03, -0.13913032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); o032628124702, -0.13664899103441613, -0.13557559051808213, -0.1287177577983344, -0.1283980995517496, -0.12222127569910947, -0.11814243739577031, -0.11740124763011342, -0.11489994619380098, -0.1142146560645211, -0.11275864429228995, -0.1096024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (eV)"}}, "yaxis": {"backgroundcolor": "rgba(0,0,0,0)", "gridcolor": "#dbdbdb", "gridwidth": 5.0, "showline": true, "tickfont": {"size": 16}, "ticklen": 14, "ticks": "inside", "title": {"font": {"size": 30}, "text": "\u03bcMn96024368229068, -0.10484253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); - \u03bcMn84253542852598, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); o98, -0.10452146091295247, -0.10273677306152332, -0.10243013596870491, -0.1016299041305034, -0.09072230658505422, -0.08982888089999409, -0.08560058212028274, -0.0848643069917153, -0.08369175384864268, -0.08254103942486529, -0.0814370240200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (eV)"}}, "zaxis": {"backgroundcolor": "rgba(0,0,0,0)", "gridcolor": "#dbdbdb", "gridwidth": 5.0, "showline": true, "tickfont": {"size": 16}, "ticklen": 14, "ticks": "inside", "title": {"font": {"size": 30}, "text": "\u03bcO200953, -0.08088254740602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); - \u03bcO0602863, -0.07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); o07719922449828796, -0.07696972582370185, -0.07649922529253576, -0.07631926080374948, -0.07434668265847695, -0.07304257991981707, -0.07127017344510522, -0.06811955298402693, -0.06641613561687439, -0.06377157172030697, -0.06332348524488077, -0.06309992497493132, -0.0629877321540442, -0.06195115343865365, -0.061742075751197965, -0.05907636522554885, -0.059037407838776625, -0.058040647831821376, -0.05704199366386662, -0.054925339757076995, -0.05454230595554818, -0.05251268305009913, -0.05103501348314575, -0.050224090011424076, -0.04792912666602962, -0.047737530079893, -0.04757497351690919, -0.04572491962828099, -0.04408802715571931, -0.04314733306814489, -0.04242183503907916, -0.04157649958180026, -0.041400329762652545, -0.03857708177549634, -0.038460369697261035, -0.036953786686562164, -0.036868388577507585, -0.03289180130231932, -0.032711155484437704, -0.032076783427077975, -0.031165766297465713, -0.028129552506168568, -0.02686967176644436, -0.025887391007694882, -0.025698362525092767, -0.024880809327579974, -0.024536889311244307, -0.023401317798101468, -0.022427646897401732, -0.021795541898906805, -0.01957696594515852, -0.01942105728798754, -0.0187653124401885, -0.018532459408548713, -0.017910210981486454, -0.014107741523398732, -0.013921051721290994, -0.013675330867087089, -0.011847985810513465, -0.010527198868418058, -0.009229392701099688, -0.008932129797219527, -0.007452914745133853, -0.0064338161231278935, -0.0038149466586508214, -0.002288334273327917, 0.002288334273327917, 0.0038149466586508214, 0.0064338161231278935, 0.007452914745133853, 0.008932129797219527, 0.009229392701099688, 0.010527198868418058, 0.011847985810513465, 0.013675330867087089, 0.013921051721290994, 0.014107741523398732, 0.017910210981486454, 0.018532459408548713, 0.0187653124401885, 0.01942105728798754, 0.01957696594515852, 0.021795541898906805, 0.022427646897401732, 0.023401317798101468, 0.024536889311244307, 0.024880809327579974, 0.025698362525092767, 0.025887391007694882, 0.02686967176644436, 0.028129552506168568, 0.031165766297465713, 0.032076783427077975, 0.032711155484437704, 0.03289180130231932, 0.036868388577507585, 0.036953786686562164, 0.038460369697261035, 0.03857708177549634, 0.041400329762652545, 0.04157649958180026, 0.04242183503907916, 0.04314733306814489, 0.04408802715571931, 0.04572491962828099, 0.04757497351690919, 0.047737530079893, 0.04792912666602962, 0.050224090011424076, 0.05103501348314575, 0.05251268305009913, 0.05454230595554818, 0.054925339757076995, 0.05704199366386662, 0.058040647831821376, 0.059037407838776625, 0.05907636522554885, 0.061742075751197965, 0.06195115343865365, 0.0629877321540442, 0.06309992497493132, 0.06332348524488077, 0.06377157172030697, 0.06641613561687439, 0.06811955298402693, 0.07127017344510522, 0.07304257991981707, 0.07434668265847695, 0.07631926080374948, 0.07649922529253576, 0.07696972582370185, 0.07719922449828796, 0.08088254740602863, 0.0814370240200953, 0.08254103942486529, 0.08369175384864268, 0.0848643069917153, 0.08560058212028274, 0.08982888089999409, 0.09072230658505422, 0.1016299041305034, 0.10243013596870491, 0.10273677306152332, 0.10452146091295247, 0.10484253542852598, 0.1096024368229068, 0.11275864429228995, 0.1142146560645211, 0.11489994619380098, 0.11740124763011342, 0.11814243739577031, 0.12222127569910947, 0.1283980995517496, 0.1287177577983344, 0.13557559051808213, 0.13664899103441613, 0.13913032628124702, 0.13956442742089903, 0.14994627459467522, 0.15206078652717814, 0.15590748209544605, 0.15904016844174224, 0.1623599728462332, 0.16362160546176235, 0.16484237519892356, 0.1789064693713693, 0.17923115749157517, 0.17968766648674928, 0.1820853136329261, 0.1841133931761701, 0.18538744733318926, 0.1870229232598624, 0.18745790819111308, 0.18858808907601282, 0.18877167811288575, 0.18936186444411152, 0.19026645430265854, 0.1951116558329767, 0.19836536657715442, 0.20221952495505774, 0.21129352229139492, 0.2144776693231931, 0.2180830858819882, 0.21943147649975464, 0.21979896660278606, 0.22217726615442768, 0.22510336644699075, 0.22589124118034648, 0.227919961360513, 0.23682873304115304, 0.24268662934988522, 0.2437097162296196, 0.24445116967069103, 0.2462235520321357, 0.24680591904880608, 0.24738671192335804, 0.2473955113981902, 0.24804499448879816, 0.249304988059164, 0.25006400239451454, 0.2502409971161638, 0.25095288130508125, 0.25327387127471757, 0.2539875720013527, 0.2545634965627493, 0.2566378578858469, 0.25687665053445413, 0.26227462824205905, 0.26648085291089235, 0.2666338448161429, 0.2682220737759482, 0.27046271907630254, 0.27157155434933256, 0.2821746088349758, 0.287284893964309, 0.29054742210792145, 0.29378225713841855, 0.2986838150763796, 0.3002462171517351, 0.3011905507168768, 0.3051051133144324, 0.3144195310139996, 0.3147664755809411, 0.316099082953608, 0.31914652786624165, 0.32190580559917364, 0.3312891283175204, 0.3326710328283608, 0.334418100324323, 0.34083186767529966, 0.34195360301042504, 0.3474814300401367, 0.3497355715237155, 0.35140758567474206, 0.35529219471809353, 0.356170205829102, 0.3566350104102197, 0.3593761709273384, 0.3628110582028559, 0.3677206458786336, 0.3718930524841081, 0.38293496146593364, 0.385672843616656, 0.3900334992727874, 0.3911219636767349, 0.39247389283820444, 0.399462268097455, 0.4101856911500031, 0.41290729195070763, 0.4195142964038215, 0.42163397569355854, 0.4272516540509306, 0.4439448902711589, 0.45057772972202004, 0.45263914484372436, 0.4605509881932589, 0.4692951646423313, 0.482383666378441, 0.49268817494548844, 0.49442768338169674, 0.4958464689043356, 0.5090480209069603, 0.530279185725927, 0.5394150094527203, 0.5402400539497964, 0.5583941274934692, 0.5710605532029679, 0.5878815952226052, 0.6086470916561867, 0.6104798348607998, 0.6195365293334537, 0.61959992475183, 0.6224799080556842, 0.641959451536511, 0.6432475254076767, 0.6463707803992377, 0.6503823787613954, 0.6530169121041588, 0.7147206698227438, 0.7220759849351598, 0.7245628823632008, 0.7429360761552188, 0.7466190036483783, 0.7513773746193134, 0.7611243616756599, 0.7698682492484907, 0.7789869995919191, 0.7832133998727533, 0.789848836023374, 0.7911435444757444, 0.7945562020195387, 0.8114562315941917, 0.8470913183167449, 0.8685338241181195, 0.8799079840841728, 0.9186826538783699, 0.9530097120055788, 0.9602591534601709, 0.966133947329489, 0.9730862995530939, 0.9752993437371588, 0.9763547740527354, 0.9872899029429585, 0.9878571202804521, 1.001945424334049, 1.0492664761534742, 1.0614576001728762, 1.1453288071774534, 1.2323521886205333, 1.241006972621295, 1.2500328261520415, 1.2679618134867274, 1.2800930763708003, 1.311916320417568, 1.3367030086269225, 1.3455103627286393, 1.3516157478209108, 1.3516627302825455, 1.3553937891765324, 1.3750409012538698, 1.390225255975148, 1.402678182817956, 1.4065991535084261, 1.407036582240258, 1.4077994769541982, 1.409693840427691, 1.4116054997924663, 1.4127371864873866, 1.4131447276760338, 1.4167679469522618, 1.4308987958691073, 1.4545450574386856, 1.456948016841024, 1.4591668645227942, 1.4603121600042968, 1.4695421365229804, 1.4760043892767285, 1.4779463752367874, 1.5084228002475104, 1.522031913318013, 1.5385122707768144, 1.5400389055534853, 1.5563052594896811, 1.601860924627827, 1.605437943963413, 1.610266090180204, 1.6148047455413437, 1.621230732248684, 1.6260240501812053, 1.6795464802035045, 1.7001150585041527, 1.7043006107763095, 1.7280190192015854, 1.7602964175215694, 3.4295509749160944], "xaxis": "x", "yaxis": "y"}], {"barmode": "relative", "legend": {"tracegroupgap": 0}, "margin": {"t": 60}, "template": {"data": {"bar": [{"error_x": {"color": "rgb(36,36,36)"}, "error_y": {"color": "rgb(36,36,36)"}, "marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "rgb(234,234,242)", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "baxis": {"endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}, "colorscale": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "rgb(231,231,240)"}, "line": {"color": "white"}}, "header": {"fill": {"color": "rgb(183,183,191)"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "rgb(67,103,167)"}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "tickcolor": "rgb(36,36,36)", "ticklen": 8, "ticks": "outside", "tickwidth": 2}}, "colorscale": {"sequential": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]], "sequentialminus": [[0.0, "rgb(2,4,25)"], [0.06274509803921569, "rgb(24,15,41)"], [0.12549019607843137, "rgb(47,23,57)"], [0.18823529411764706, "rgb(71,28,72)"], [0.25098039215686274, "rgb(97,30,82)"], [0.3137254901960784, "rgb(123,30,89)"], [0.3764705882352941, "rgb(150,27,91)"], [0.4392156862745098, "rgb(177,22,88)"], [0.5019607843137255, "rgb(203,26,79)"], [0.5647058823529412, "rgb(223,47,67)"], [0.6274509803921569, "rgb(236,76,61)"], [0.6901960784313725, "rgb(242,107,73)"], [0.7529411764705882, "rgb(244,135,95)"], [0.8156862745098039, "rgb(245,162,122)"], [0.8784313725490196, "rgb(246,188,153)"], [0.9411764705882353, "rgb(247,212,187)"], [1.0, "rgb(250,234,220)"]]}, "colorway": ["rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)"], "font": {"color": "rgb(36,36,36)"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "paper_bgcolor": "white", "plot_bgcolor": "rgb(234,234,242)", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "radialaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "rgb(234,234,242)", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "showgrid": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"fillcolor": "rgb(67,103,167)", "line": {"width": 0}, "opacity": 0.5}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}, "bgcolor": "rgb(234,234,242)", "caxis": {"gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": ""}}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "showgrid": true, "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white"}}}, "xaxis": {"anchor": "y", "domain": [0.0, 1.0], "title": {"text": "energy"}}, "yaxis": {"anchor": "x", "domain": [0.0, 1.0], "title": {"text": "count"}}}, {"responsive": true} ).then(function(){ var gd = document.getElementById('15546309-3970-48ea-9051-bb290b2ec223'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); (eV)"}}}, "showlegend": true, "template": {"data": {"bar": [{"error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "bar"}], "barpolar": [{"marker": {"line": {"color": "#E5ECF6", "width": 0.5}}, "type": "barpolar"}], "carpet": [{"aaxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "baxis": {"endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f"}, "type": "carpet"}], "choropleth": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "choropleth"}], "contour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "contour"}], "contourcarpet": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "contourcarpet"}], "heatmap": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "heatmapgl"}], "histogram": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "histogram"}], "histogram2d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2d"}], "histogram2dcontour": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "histogram2dcontour"}], "mesh3d": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "type": "mesh3d"}], "parcoords": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "parcoords"}], "pie": [{"automargin": true, "type": "pie"}], "scatter": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter"}], "scatter3d": [{"line": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatter3d"}], "scattercarpet": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattercarpet"}], "scattergeo": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergeo"}], "scattergl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattergl"}], "scattermapbox": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scattermapbox"}], "scatterpolar": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolar"}], "scatterpolargl": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterpolargl"}], "scatterternary": [{"marker": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "type": "scatterternary"}], "surface": [{"colorbar": {"outlinewidth": 0, "ticks": ""}, "colorscale": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "type": "surface"}], "table": [{"cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}, "header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table"}]}, "layout": {"annotationdefaults": {"arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1}, "autotypenumbers": "strict", "coloraxis": {"colorbar": {"outlinewidth": 0, "ticks": ""}}, "colorscale": {"diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]], "sequentialminus": [[0.0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1.0, "#f0f921"]]}, "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "font": {"color": "#2a3f5f"}, "geo": {"bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white"}, "hoverlabel": {"align": "left"}, "hovermode": "closest", "mapbox": {"style": "light"}, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": {"angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "yaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}, "zaxis": {"backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white"}}, "shapedefaults": {"line": {"color": "#2a3f5f"}}, "ternary": {"aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "title": {"x": 0.05}, "xaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}, "yaxis": {"automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": {"standoff": 15}, "zerolinecolor": "white", "zerolinewidth": 2}}}, "width": 800}, {"responsive": true} ).then(function(){ var gd = document.getElementById('ce3e056f-94ca-4b18-9a53-db389a953a41'); var x = new MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); d" markdown="1">

4.2 Brute force (simple) approach

Enumerating reactions by brute force may seem like a less advanced approach, but it offers the added benefit that we can identify reactions involving:

1) metastable products 2) products which are not stable with respect to each other

This approach has been implemented with the BasicEnumerator class in the reaction-network package. Let's import the class:

From the chemical potential diagram, we can easily see the relative stabilities of each phase and get a visual picture of where the critical chemical potentials are for each phase.

3. Predicting interface reactions between solids

3.1 A simple model of solid-state synthesis

In solid-state synthesis, precursor compounds are typically milled into powders of small solid crystallites. These powders are intimately mixed, typically pressed into a pellet, and then heated in a furnace. Historically, solid-state synthesis involves high temperatures (i.e. 1200 ºC) and long heating times (24-72 hrs). However, many reactions can proceed significantly faster (on the order of a few minutes) and at temperatures as low as 400-500ºC.

A simple cartoon of solid-state synthesis can be seen below:

At the interfaces where the powder crystallites touch, if the free energy of the system can be decreased by forming a new phase or set of phases, the new phase(s) will nucleate and grow.

We can predict the possible reactions between the interface of any two phases by drawing a line (see the red dashed line below) connecting the two phases on the phase diagram. A reaction is given by each point where the connecting line intersects the phase diagram points/lines.

In the hypothetical system below, there are two predicted reactions given by the yellow star and green circle -- in this case the reaction to form \(\gamma\) (green circle) is the most thermodynamically favorable because it involves the greatest decrease in free energy. However, the reaction given by the yellow star is still favorable and may occur at higher temperatures / later times.

3.2 Using pymatgen's interface reaction calculator

The phase diagram slice approach depicted above has been implemented into pymatgen within the InterfacialReactivity class and is available as an app on the MP website.

Let's see if we can apply it within the Y-Mn-O chemical system to better understand the synthesis of our YMnO\(_3\) target. We will start with plotting the suggested reactions between Y\(_2\)O\(_3\) and Mn\(_2\)O\(_3\):

from pymatgen.analysis.interface_reactions import InterfacialReactivity

ir = InterfacialReactivity(Composition("Y2O3"), Composition("Mn2O3"), pd_gibbs)
ir.plot().show()

In the plot, we see a new convex hull slice, where each point represents a reaction as a function of the (normalized) ratio of mixing between the two reactants. To see which reactions the plot above corresponds to, we need to extract data about the "kinks" within the diagram. Let's use the code below to help us plot information about the reactions shown in the plot above:

pandas.set_option("max_colwidth", 80)  # make columns wider to see full reaction

def get_df_from_interface_rxns(ir):
    critical_rxns = [
        {"Atomic fraction":round(ratio, 3),
         "Reaction": rxn,
            "E$_{rxn}$ (kJ/mol)": round(rxn_energy, 1),
            "E$_{rxn}$ (eV/atom)":round(reactivity, 3)
        }
        for _, ratio, reactivity, rxn, rxn_energy in ir.get_kinks()
    ]

    ir_df = pandas.DataFrame(critical_rxns)
    return ir_df

Now we can construct and display the dataframe:

ir_df = get_df_from_interface_rxns(ir)
ir_df
Atomic fraction Reaction E$_{rxn}$ (kJ/mol)t; Y2O3 + 1.5 Mn E$_{rxn}$ (eV/atom)
0 0.000 Y + 1.5 MnO2 -> Y2O3 + 0.125 YMn12 Mn2O3 -> Mn2O3 0.054636 0.000Y
1 0.1674 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3 0.8333 Mn2O3 + 0.1667 Y2O3 -> 0.3333 YMn2O5 + 0.3333 Mn3O4
-19.2747 -0.040
2 0.5000.1481 YMn12 -> 1.778 MnO + 0.07407 Y2O3 0.5 Mn2O3 + 0.5 Y2O3 -> YMnO38 -34.4648 -0.071
3.. 1.000td> Y2O3 -> Y2O3 0.0 0.000td>

In the table, we see the reactions as a function of the normalized mixing ratio, along with their energy in kJ per mole of reaction, as well as eV per (reactant) atom.

It seems that YMnO\(_3\) is indeed the major predicted reaction product when Y\(_2\)O\(_3\) and and Mn\(_2\)O\(_3\) are combined in equal molar amounts. However, the reaction forming YMn\(_2\)O\(_5\) and Mn\(_3\)O\(_4\) could still occur to some degree depending on the process by which the synthesis procedure occurs (i.e., initial grain sizes, heating rate, maximum temperature reached, etc.) This is because there is still a thermodynamic driving force for subsequent interfacial reaction between YMnO\(_3\) and any remaining precursor Mn\(_2\)O\(_3\). This can be seen by plotting the same interface reaction plot between YMnO\(_3\) and Mn\(_2\)O\(_3\):

ir = InterfacialReactivity(Composition("YMnO3"), Composition("Mn2O3"), pd_gibbs)
ir.plot().show()
get_df_from_interface_rxns(ir)
="output_wrapper" markdown="1"> Atomic fractionown="1"> Reactiont_area" markdown="1"> E$_{rxn}$ (kJ/mol)kdown="1"> E$_{rxn}$ (eV/atom)ered_html output_subarea "> class="output_html rendered_html output_subarea "> iv>
0 MutationObserver(function (mutations, observer) {{ var display = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.000play = window.getComputedStyle(gd).display; if (!display || display === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); Mn2O3 -> Mn2O3play === 'none') {{ console.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.0onsole.log([gd, 'removed!']); Plotly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.000tly.purge(gd); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); observer.disconnect(); }} }}); // Listen for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
1sten for the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.333the removal of the full notebook cells var notebookContainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 0.6667 Mn2O3 + 0.3333 YMnO3 -> 0.3333 YMn2O5 + 0.3333 Mn3O4er = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -7.7ntainer = gd.closest('#notebook-container'); if (notebookContainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.016ainer) {{ x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); x.observe(notebookContainer, {childList: true}); }} // Listen for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; });
2for the clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); 1.000he clearing of the current output cell var outputEl = gd.closest('.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); YMnO3 -> YMnO3.output'); if (outputEl) {{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.0{{ x.observe(outputEl, {childList: true}); }} }) }; }); -0.000tputEl, {childList: true}); }} }) }; }); }) }; }); }) }; });

It turns out that this is true again for any Mn\(_3\)O\(_4\) produced, which may react with remaining Y\(_2\)O\(_3\) precursor to make YMnO\(_3\) and MnO. The same goes again for MnO and Mn\(_2\)O\(_3\).

Just in this simple ternary system, we can already see the complex (and sometimes unpredictable) behavior associated with reaction pathways within solid-state synthesiss. To organize this progression of reactions, we choose to create a graph network representation of the possible reaction pathway, such as the one illustrated below:

Before we can explore this reaction network structure further, however, we need to first discuss how to acquire all possible reactions which may occur within a chemical system.

4. Enumerating all reactions within a chemical system

As we saw above, the possibility of subsequent reactions makes a model for solid-state synthesis quite complex. If we wish to capture this behavior, we first need to be able to enumerate through all possible reactions within a chemical system. These reactions will then be used to construct the reaction network.

There are two methods for predicting reactions in a high-throughput manner:

1) interface reactions predicted by iterating through all possible slices of the full phase diagram (as above) 2) brute force trial & error balancing between any set of reactants and any set of products

Both of these methods are implemented in the reaction-network package, which builds reaction network analysis on top of pymatgen. Please see the Github repository below if you are interested in exploring more:

https://github.com/GENESIS-EFRC/reaction-network

4.1 Minimize Gibbs (interface reaction) approach

First, we need to come up with a candidate set of entries. Since we are using the reaction-network package, we are going to initialize the entries using that package's convenience methods:

from rxn_network.entries.entry_set import GibbsEntrySet

gibbs_entry_set = GibbsEntrySet.from_entries(entries, temperature=1000)
stable_entries = gibbs_entry_set.filter_by_stability(e_above_hull=0)

Now, we can initialize the enumerator object:

from rxn_network.enumerators.minimize import MinimizeGibbsEnumerator

mge = MinimizeGibbsEnumerator()

To enumerate reactions, we call enumerate() with a list of provided entries. This will return a list of reactions which are computed using the interface reaction method from above:

rxns = mge.enumerate(stable_entries)

As before, let's look at these in a DataFrame by using a helper method:

def get_df_from_rxns(rxns):
    energies = [r.energy_per_atom for r in rxns]
    uncertainties = [r.energy_uncertainty_per_atom.s for r in rxns]
    chemsyses = [r.chemical_system for r in rxns]

    data = {"reaction": rxns, "energy": energies, "dE": uncertainties, "chemsys": chemsyses}

    return pandas.DataFrame(data).sort_values("energy").reset_index(drop=True)
df = get_df_from_rxns(rxns)
df
reaction> energy> dE9231 Y2O3 + 0.07692 YMn12 -> Y + 0.9231 YMnO3 chemsys7
08 2 Y + 1.5 O2 -> Y2O3O3 -3.429551/td> 0.061644 O-YO-Y
1> MnO2 + 1.333 Y -> Mn + 0.6667 Y2O3> -1.760296v> 0.055203div> Mn-O-Y v>
2v> 12 MnO2 + 17 Y -> YMn12 + 8 Y2O3zing text_cell rendered" markdown="1"> -1.728019"cell border-box-sizing text_cell rendered" markdown="1"> 0.054636"cell border-box-sizing text_cell rendered" markdown="1"> Mn-O-Y border-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1">
3possible to specify precursors: YMn12 + 7 O2 -> YMnO3 + 11 MnOr-box-sizing code_cell rendered" markdown="1"> -1.704301class="cell border-box-sizing code_cell rendered" markdown="1"> 0.054747"cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Y border-box-sizing code_cell rendered" markdown="1"> class="input">
4 0.08333 YMn12 + 0.5625 O2 -> MnO + 0.04167 Y2O3 rendered" markdown="1"> -1.700115 class="cell border-box-sizing code_cell rendered" markdown="1"> 0.057648="cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Ys="cell border-box-sizing code_cell rendered" markdown="1"> class="cell border-box-sizing code_cell rendered" markdown="1">
... ... ... class="output_wrapper" markdown="1"> ...class="output_wrapper" markdown="1"> ...output_wrapper" markdown="1"> class="output_wrapper" markdown="1">
56"output_area" markdown="1"> MnO + 0.5 Y2Mn2O7 -> YMnO3 + 0.5 Mn2O3="4cc1f495-c33c-49f7-8e9b-924cb5217ad6"> -0.058041495-c33c-49f7-8e9b-924cb5217ad6"> 0.053955495-c33c-49f7-8e9b-924cb5217ad6"> Mn-O-Yf495-c33c-49f7-8e9b-924cb5217ad6"> iv id="4cc1f495-c33c-49f7-8e9b-924cb5217ad6">
571f495-c33c-49f7-8e9b-924cb5217ad6"> 0.5 Mn2O3 + 0.25 O2 -> MnO2_view "> -0.051035javascript"> 0.0656174cc1f495-c33c-49f7-8e9b-924cb5217ad6'); Mn-Oipt type="application/vnd.jupyter.widget-view+json"> ipt type="application/vnd.jupyter.widget-view+json">
58div> 0.5 O2 + 2 YMnO3 -> Y2Mn2O7 markdown="1"> -0.031166="output_area" markdown="1"> 0.067726="output_area" markdown="1"> Mn-O-Yput_area" markdown="1"> class="output_area" markdown="1">
59output_html rendered_html output_subarea output_execute_result"> 12 Mn + Y -> YMn12rame tbody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } -0.003815.dataframe tbody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } 0.068154dy tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } Mn-Yal-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; }
60me tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } 2 MnO2 + 2 YMnO3 -> Mn2O3 + Y2Mn2O7me thead th { text-align: right; } -0.002288me thead th { text-align: right; } 0.052478ead th { text-align: right; } Mn-O-Yhead th { text-align: right; } text-align: right; }

61 rows × 4 columns

We can plot a histogram of the reaction energies to get an idea of the thermodynamics of the system. Again, we see that Y\(_2\)O\(_3\) is quite stable (the reaction on the far left!). Most reactions, however, are in the -0.4 to 0.0 eV/atom range.

import plotly.express as px

px.histogram(data_frame=df, x="energy", nbins=20, template="seaborn")

Building a dataframe with the reactions:

df = get_df_from_rxns(rxns_basic)
df
body>
="text_cell_render border-box-sizing rendered_html" markdown="1"> reactionmerating open reactions Since solid-state synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use `BasicOpenEnumerator`, or `MinimizeGrandPotentialEnumerator`: energyte synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use `BasicOpenEnumerator`, or `MinimizeGrandPotentialEnumerator`: dEstate synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use `BasicOpenEnumerator`, or `MinimizeGrandPotentialEnumerator`: chemsysiv> v> div>
07 Y + 0.75 O2 -> 0.5 Y2O3ass="cell border-box-sizing code_cell rendered" markdown="1"> -3.429551v class="cell border-box-sizing code_cell rendered" markdown="1"> 0.061644v class="cell border-box-sizing code_cell rendered" markdown="1"> O-Yclass="cell border-box-sizing code_cell rendered" markdown="1"> v>
1"input"> 2 Y + 1.5 MnO2 -> Y2O3 + 1.5 Mnapper" markdown="1"> -1.760296> 0.055203s="output_wrapper" markdown="1"> Mn-O-Yss="output_wrapper" markdown="1"> v class="output_wrapper" markdown="1">
2"output" markdown="1"> 2.125 Y + 1.5 MnO2 -> Y2O3 + 0.125 YMn12"1558af7c-5f8f-44e3-b9ac-64623bc7d640"> -1.728019area" markdown="1"> 0.054636af7c-5f8f-44e3-b9ac-64623bc7d640"> Mn-O-Y8af7c-5f8f-44e3-b9ac-64623bc7d640"> div id="1558af7c-5f8f-44e3-b9ac-64623bc7d640">
3558af7c-5f8f-44e3-b9ac-64623bc7d640"> 0.6364 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3ass="output_subarea output_widget_view "> -1.704301subarea output_widget_view "> 0.054747/javascript"> Mn-O-Y'#1558af7c-5f8f-44e3-b9ac-64623bc7d640'); ript>
4: "74e1b808606d4df18be962f8b58cfe7d", "version_major": 2, "version_minor": 0} O2 + 0.1481 YMn12 -> 1.778 MnO + 0.07407 Y2O3="cell border-box-sizing code_cell rendered" markdown="1"> -1.700115iv> 0.057648div> Mn-O-Y/div> iv>
...> ...class="cell border-box-sizing code_cell rendered" markdown="1"> ...lass="cell border-box-sizing code_cell rendered" markdown="1"> ...ell border-box-sizing code_cell rendered" markdown="1"> ...nput"> xhzdk:69
573 class="output_wrapper" markdown="1"> 1.778 MnO + 0.07407 Y2O3 -> O2 + 0.1481 YMn12ss="output" markdown="1"> 1.700115t_wrapper" markdown="1"> 0.057648_wrapper" markdown="1"> Mn-O-Yut" markdown="1"> v class="output_area" markdown="1">
574output_html rendered_html output_subarea output_execute_result"> MnO + 0.09091 YMnO3 -> 0.6364 O2 + 0.09091 YMn12xecute_result"> 1.704301d> 0.054747 .dataframe tbody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } Mn-O-Ybody tr th:only-of-type { vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } vertical-align: middle; } .dataframe tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; }
575me tbody tr th { vertical-align: top; } .dataframe thead th { text-align: right; } Y2O3 + 0.125 YMn12 -> 2.125 Y + 1.5 MnO2top; } .dataframe thead th { text-align: right; } 1.728019lign: top; } .dataframe thead th { text-align: right; } 0.054636ame thead th { text-align: right; } Mn-O-Ythead th { text-align: right; } .dataframe thead th { text-align: right; }
576> Y2O3 + 1.5 Mn -> 2 Y + 1.5 MnO2> 1.760296class="dataframe"> 0.055203style="text-align: right;"> Mn-O-Yext-align: right;">
577rgy 0.5 Y2O3 -> Y + 0.75 O2/th> 3.429551/th> 0.061644d> O-Y

578 rows × 4 columns

And plotting the reaction energy distribution:

px.histogram(data_frame=df, x="energy", template="seaborn")

And we see that all enumerated reactions do indeed contain YMnO\(_3\) as a product:

get_df_from_rxns(rxns_ymno3)
reaction energy75 O2 -> 0.5 Y2O3 dE.573877 chemsys0
0 + 0.02703 MnO + 0.7568 O2 -> 0.4865 Y2O3 + 0.02703 YMnO3 0.6364 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3-Y -1.704301/td> 0.054747> Mn-O-Yr>
1 + 0.03846 Mn2O3 + 0.7692 O2 -> 0.03846 Y2Mn2O7 + 0.4615 Y2O3 2.409 O2 + 0.2727 YMn12 -> Mn3O4 + 0.2727 YMnO3n-Y -1.626024/td> 0.055648> Mn-O-Yr>
2 + O2 + 0.01961 YMn12 -> 0.1176 Y2Mn2O7 + 0.3922 Y2O3 1.773 O2 + 0.1818 YMn12 -> Mn2O3 + 0.1818 YMnO3n-Y -1.621231/td> 0.056117> Mn-O-Yr>
3 + O2 + 0.25 Mn -> 0.125 Y2Mn2O7 + 0.375 Y2O3 4.682 O2 + 0.4545 YMn12 -> Mn5O8 + 0.4545 YMnO3n-Y -1.556305/td> 0.056397> Mn-O-Yr>
4.. O2 + 0.08 YMn12 -> 0.88 MnO2 + 0.08 YMnO3d> -1.430899 0.057475
Mn-O-Yr>
...25 Y2Mn2O7 + 0.375 Y2O3 -> Y + O2 + 0.25 Mn ...94811 ...29422 ...Y ...
741176 Y2Mn2O7 + 0.3922 Y2O3 -> Y + O2 + 0.01961 YMn12 1.444 MnO + 0.5185 Y2O3 -> YMnO3 + 0.03704 YMn12Y 0.128718 0.057905> Mn-O-Yr>
7503846 Y2Mn2O7 + 0.4615 Y2O3 -> Y + 0.03846 Mn2O3 + 0.7692 O2 Y2O3 + 13 Mn -> YMnO3 + YMn12 0.250953 0.054716> Mn-O-Yr>
764865 Y2O3 + 0.02703 YMnO3 -> Y + 0.02703 MnO + 0.7568 O2 3 MnO + 2 Y2O3 -> Y + 3 YMnO3 0.355292 0.059457> Mn-O-Yr>
775 Y2O3 -> Y + 0.75 O2 0.9231 Y2O3 + 0.07692 YMn12 -> Y + 0.9231 YMnO3/td> 0.751377 0.059467
Mn-O-Yody> tbody>
78 × 4 columns

Y2O3 + Mn -> Y + YMnO3> 0.761124div> 0.060093div> Mn-O-Y/div> iv>

79 rows × 4 columns

It is also possible to specify precursors:

be_precursors = BasicEnumerator(precursors=["Y2O3","Mn2O3"])
rxns_precursors = be_precursors.enumerate(entries_030)
get_df_from_rxns(rxns_ymno3)
energy reaction energys dE
chemsysdy> body>
08.573877 0.6364 O2 + 0.09091 YMn12 -> MnO + 0.09091 YMnO3 -1.704301
0.054747 Mn-O-Yth>
16.376210 2.409 O2 + 0.2727 YMn12 -> Mn3O4 + 0.2727 YMnO3r> -1.626024
0.055648 Mn-O-Yth>
26.374144 1.773 O2 + 0.1818 YMn12 -> Mn2O3 + 0.1818 YMnO3r> -1.621231
0.056117 Mn-O-Yth>
34.854178 4.682 O2 + 0.4545 YMn12 -> Mn5O8 + 0.4545 YMnO3r> -1.556305
0.056397 Mn-O-Yth>
44.679241 O2 + 0.08 YMn12 -> 0.88 MnO2 + 0.08 YMnO3
-1.430899
0.057475 Mn-O-Yth>
...568917 ...61284 ...Y ...
...
74.550820 1.444 MnO + 0.5185 Y2O3 -> YMnO3 + 0.03704 YMn12> 0.128718> 0.057905 Mn-O-Yth>
75.474267 Y2O3 + 13 Mn -> YMnO3 + YMn12> 0.250953> 0.054716 Mn-O-Yth>
76.195813 3 MnO + 2 Y2O3 -> Y + 3 YMnO3> 0.355292> 0.059457 Mn-O-Yth>
77.803885 0.9231 Y2O3 + 0.07692 YMn12 -> Y + 0.9231 YMnO3 0.751377
0.059467 Mn-O-Yth>
78.444450 Y2O3 + Mn -> Y + YMnO3n-Y 0.761124> 0.060093 Mn-O-Yth>

79 rows × 4 columns

And it is even possible to specify both precursors and a target. In this case, we should only get one possible reaction:

be = BasicEnumerator(precursors=["Y2O3","Mn2O3"], target="YMnO3")
rxns_ymno3 = be.enumerate(entries_030)
get_df_from_rxns(rxns_ymno3)
iv> reactionv class="cell border-box-sizing text_cell rendered" markdown="1"> energyss="cell border-box-sizing text_cell rendered" markdown="1"> dEclass="cell border-box-sizing text_cell rendered" markdown="1"> chemsysborder-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1"> iv class="text_cell_render border-box-sizing rendered_html" markdown="1">
0 have a way to enumerate all reactions within a chemical system, we'd like to be able to put them in a convenient data structure such that we can learn something about a system. One particular data structure that is helpful for predicting reaction pathways is a **weighted directed graph**. The weighted directed graph, or reaction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - **Nodes**: Phase combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* Mn2O3 + Y2O3 -> 2 YMnO3ction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - **Nodes**: Phase combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* -0.07127ted graph, or reaction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - **Nodes**: Phase combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* 0.061237 combinations - **Edges**: Reactions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* Mn-O-Yctions - **Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* Edge weights/costs**: Reaction free energies (after monotonic transformation) The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x* he function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function. For more information about this approach, please see the following publication: **Reference:** *McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x*

4.4 BONUS: Enumerating open reactions

Since solid-state synthesis often happens in the presence of some kind of gaseous or "open" environment, it is also possible to enumerate so-called open reactions where a particular entry is open. For this, we can use BasicOpenEnumerator, or MinimizeGrandPotentialEnumerator:

from rxn_network.enumerators.basic import BasicOpenEnumerator
boe = BasicOpenEnumerator(["O2"])
open_rxns = boe.enumerate(entries_030)
get_df_from_rxns(open_rxns)
pe="application/vnd.jupyter.widget-view+json"> reactione6f312c049afa76697f32728439b", "version_major": 2, "version_minor": 0} energy dEv> chemsys/div> v> /div>
0v class="cell border-box-sizing code_cell rendered" markdown="1"> Y + 0.75 O2 -> 0.5 Y2O3izing code_cell rendered" markdown="1"> -3.429551rder-box-sizing code_cell rendered" markdown="1"> 0.061644> O-Y hzdk:80
1v class="output_wrapper" markdown="1"> Y + 0.02703 MnO + 0.7568 O2 -> 0.4865 Y2O3 + 0.02703 YMnO3="1"> -3.349437wrapper" markdown="1"> 0.059158" markdown="1"> Mn-O-Yput_area" markdown="1"> class="output_area" markdown="1">
2> Y + 0.03846 Mn2O3 + 0.7692 O2 -> 0.03846 Y2Mn2O7 + 0.4615 Y2O3l vertex properties, 3 internal edge properties, at 0x7fc8992f99a0> -3.154596v> 0.054649v> Mn-O-Y/div> v>
3v> Y + 0.04569 Mn3O4 + 0.7614 O2 -> 0.4315 Y2O3 + 0.1371 YMnO3rkdown="1"> -3.045732"cell border-box-sizing text_cell rendered" markdown="1"> 0.051417"cell border-box-sizing text_cell rendered" markdown="1"> Mn-O-Y border-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1">
4pathfinding, we first need to set the precursors and target defining the particular synthesis procedure we are interested in. For now, let's look at the synthesis of YMnO$_3$ from the starting binary oxides, Y$_2$O$_3$ and Mn$_2$O$_3$. We first acquire the entries from the set of entries by providing the formula: Y + O2 + 0.02564 YMn12 -> 0.359 Y2O3 + 0.3077 YMnO3l rendered" markdown="1"> -3.007624class="cell border-box-sizing code_cell rendered" markdown="1"> 0.049065"cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Y border-box-sizing code_cell rendered" markdown="1"> class="input">
... ...v> ...> ...class="cell border-box-sizing text_cell rendered" markdown="1"> ...lass="cell border-box-sizing text_cell rendered" markdown="1"> class="cell border-box-sizing text_cell rendered" markdown="1">
1523xt_cell_render border-box-sizing rendered_html" markdown="1"> 0.359 Y2O3 + 0.3077 YMnO3 -> Y + O2 + 0.02564 YMn12/div> 3.007624v> 0.049065 class="cell border-box-sizing code_cell rendered" markdown="1"> Mn-O-Ys="cell border-box-sizing code_cell rendered" markdown="1"> class="cell border-box-sizing code_cell rendered" markdown="1">
1524 0.4315 Y2O3 + 0.1371 YMnO3 -> Y + 0.04569 Mn3O4 + 0.7614 O2l rendered" markdown="1"> 3.045732iv class="cell border-box-sizing text_cell rendered" markdown="1"> 0.051417v class="cell border-box-sizing text_cell rendered" markdown="1"> Mn-O-Yss="cell border-box-sizing text_cell rendered" markdown="1"> v>
1525ner_cell" markdown="1"> 0.03846 Y2Mn2O7 + 0.4615 Y2O3 -> Y + 0.03846 Mn2O3 + 0.7692 O2 We can also draw a cartoon illustration of what this reaction network looks like using the `plot_network()` function 3.154596 cartoon illustration of what this reaction network looks like using the `plot_network()` function 0.054649v> Mn-O-Yiv class="cell border-box-sizing code_cell rendered" markdown="1"> v>
1526put"> 0.4865 Y2O3 + 0.02703 YMnO3 -> Y + 0.02703 MnO + 0.7568 O2lass="output" markdown="1"> 3.349437v> 0.059158s="output_wrapper" markdown="1"> Mn-O-Yss="output_wrapper" markdown="1"> v class="output_wrapper" markdown="1">
1527tput" markdown="1"> 0.5 Y2O3 -> Y + 0.75 O21"> 3.429551_area" markdown="1"> 0.061644ut_png output_subarea "> O-Youtput_png output_subarea "> class="output_png output_subarea "> mg src="data:image/png;base64,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RERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERETUP/4/YhCaCngmKDsAAAAASUVORK5CYII= " width=356 height=600 >

1528 rows × 4 columns

If these reactions involve an open entry that is also an element, then it is possible to recalculate the reaction energy in terms of grand potential. For this it helps to import ReactionSet for recalculating reaction energies all at once:

from rxn_network.reactions.reaction_set import ReactionSet
rxn_set = ReactionSet.from_rxns(open_rxns)
open_rxns_grand = rxn_set.get_rxns(open_elem=Element("O"), chempot=0.0)
get_df_from_rxns(open_rxns_grand)
0.3333 YMn12 -> 3.667 Mn + 2.333 YMnO3 (dG = -0.249 eV/atom) Total Cost: 0.467 1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 reaction 1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 energy308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 dE 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 chemsys YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) Total Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 l Cost: 0.467 0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473 .5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) Total Cost: 0.473
0 0.473 Y + 0.75 O2 -> 0.5 Y2O3> -8.573877v> 0.154110v> Yv> v>
1v> Y + 0.02703 MnO + 0.7568 O2 -> 0.4865 Y2O3 + 0.02703 YMnO3arkdown="1"> -8.373593"cell border-box-sizing text_cell rendered" markdown="1"> 0.147896"cell border-box-sizing text_cell rendered" markdown="1"> Mn-Yll border-box-sizing text_cell rendered" markdown="1"> class="inner_cell" markdown="1">
2: Finding and balancing reaction pathways from a real experiment ### NOTE: this last section can take a few minutes to run! In 2019, Todd et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Y + 0.03846 Mn2O3 + 0.7692 O2 -> 0.03846 Y2Mn2O7 + 0.4615 Y2O3et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: -7.999155 section can take a few minutes to run! In 2019, Todd et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: 0.138574al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Mn-Yet al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation: $$ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 $$ They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline:
3observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline: Y + O2 + 0.01961 YMn12 -> 0.1176 Y2Mn2O7 + 0.3922 Y2O3ed via in situ X-ray diffraction on a synchrotron beamline: -7.748977> 0.129626 class="cell border-box-sizing text_cell rendered" markdown="1"> Mn-Yass="cell border-box-sizing text_cell rendered" markdown="1"> class="cell border-box-sizing text_cell rendered" markdown="1">
4"text_cell_render border-box-sizing rendered_html" markdown="1"> Y + O2 + 0.25 Mn -> 0.125 Y2Mn2O7 + 0.375 Y2O3odd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075* -7.694811dd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075* 0.129422dd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075* Mn-Y v>
...ell border-box-sizing text_cell rendered" markdown="1"> ...nner_cell" markdown="1"> ...ext_cell_render border-box-sizing rendered_html" markdown="1"> ... synthesis, we first acquire the entries for the entire 6-element chemical system from MP: ... v>
1523ll border-box-sizing code_cell rendered" markdown="1"> 0.125 Y2Mn2O7 + 0.375 Y2O3 -> Y + O2 + 0.25 Mns="cell border-box-sizing text_cell rendered" markdown="1"> 7.694811iv> 0.129422v> Mn-Y> v>
1524ass="cell border-box-sizing text_cell rendered" markdown="1"> 0.1176 Y2Mn2O7 + 0.3922 Y2O3 -> Y + O2 + 0.01961 YMn12> 7.748977cell" markdown="1"> 0.129626ell_render border-box-sizing rendered_html" markdown="1"> Mn-Ythis entries by a stability filter of 20 meV/atom at T = 650 ºC: v>
1525ass="cell border-box-sizing code_cell rendered" markdown="1"> 0.03846 Y2Mn2O7 + 0.4615 Y2O3 -> Y + 0.03846 Mn2O3 + 0.7692 O2lass="input"> 7.999155> 0.138574iv> Mn-Y iv>
1526lass="cell border-box-sizing text_cell rendered" markdown="1"> 0.4865 Y2O3 + 0.02703 YMnO3 -> Y + 0.02703 MnO + 0.7568 O2"1"> 8.373593order-box-sizing text_cell rendered" markdown="1"> 0.147896cell" markdown="1"> Mn-Yxt_cell_render border-box-sizing rendered_html" markdown="1"> hen designate the enumerator, cost function, and build the network. **NOTE: This may take a minute to build**!
1527
0.5 Y2O3 -> Y + 0.75 O2izing code_cell rendered" markdown="1"> 8.573877order-box-sizing code_cell rendered" markdown="1"> 0.154110> Y7 hzdk:87 /div>

1528 rows × 4 columns

Similarly, it is also possible to enumerate reactions straight from the grand potential phase diagram:

from rxn_network.enumerators.minimize import MinimizeGrandPotentialEnumerator

mgpe = MinimizeGrandPotentialEnumerator(open_elem=Element("O"), mu=0.0)
open_rxns2 = mgpe.enumerate(entries_030)
get_df_from_rxns(open_rxns2)
----------------------------- 2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 0.5 Y2Mn2O7 + 0.5 Mn2O3 -> MnO2 + YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 reaction-> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 0.5 Y2Mn2O7 + 0.5 Mn2O3 -> MnO2 + YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 energy -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 0.5 Y2Mn2O7 + 0.5 Mn2O3 -> MnO2 + YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 dE+ 0.5 Mn2O3 -> MnO2 + YMnO3 (dG = 0.005 eV/atom) Total Cost: 0.516 2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 chemsys 2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Cl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) Total Cost: 0.523 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
0n2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 Y + 1.5 O2 -> Y2O3nO3 (dG = 0.009 eV/atom) YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -8.573877YMnO3 + CCl3 (dG = 0.393 eV/atom) Total Cost: 0.625 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.154110 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Y 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
13 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.722 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 Mn + 2 Y + 3.5 O2 -> Y2Mn2O7gt; LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -6.376210O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.166771O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.728 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
2 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.1667 YMn12 + 1.833 Y + 3.5 O2 -> Y2Mn2O70.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -6.3741447 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.166797-> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
3Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 MnO + 2 Y + 2.5 O2 -> Y2Mn2O7tom) Total Cost: 0.734 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.854178 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161051+ Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-YO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 33 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) Total Cost: 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
4 0.74 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.6667 Mn3O4 + 2 Y + 2.167 O2 -> Y2Mn2O7 = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.6792413 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.160835YClO + 2 LiCl (dG = -0.275 eV/atom) YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-YMn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) Total Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.742 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
5; CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.4 Mn5O8 + 2 Y + 1.9 O2 -> Y2Mn2O7YO2 (dG = -0.254 eV/atom) LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.568917> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) Total Cost: 0.746 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161284 PATHS to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 S to LiCl --------------------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
6---------------------------- 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2O3 + 2 Y + 2 O2 -> Y2Mn2O7.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.5508203 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161051gt; Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y478 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 i2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
7 -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.483 2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 MnO2 + 2 Y + 1.5 O2 -> Y2Mn2O7; LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.474267O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.162980O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.487 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
8; CO2 + Li2O (dG = 0.139 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 YMn12 + 25.5 O2 -> Y2Mn2O7 + 22 MnO2tom) Total Cost: 0.491 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -4.195813 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.169340+ Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-YO2 + Li2O (dG = 0.139 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.495 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
9t; CO2 + Li2O (dG = 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn + O2 -> MnO2= 0.139 eV/atom) 0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -3.8038857 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) Total Cost: 0.499 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.187083 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 O3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
10i2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.717 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.1667 YMn12 + 0.9167 Y2O3 + 2.125 O2 -> Y2Mn2O7= 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -2.444450t; MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.160450t; MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y25 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.72 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
112O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 Mn + Y2O3 + 2 O2 -> Y2Mn2O7 0.046 eV/atom) LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -2.089271> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.161051YClO + 2 LiCl (dG = -0.275 eV/atom) Total Cost: 0.721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y721 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
125 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 MnO + 0.5 O2 -> MnO2Cl (dG = -0.3 eV/atom) Total Cost: 0.721 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.759822 PATHS to CO2 --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.187083------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn --------------------------------------- 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 ------------------------------------ 0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
13+ 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 2 MnO + Y2O3 + O2 -> Y2Mn2O7 CO2 (dG = 0.005 eV/atom) Total Cost: 0.26 2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.5672402 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.1610514CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y Li4CO4 + CO2 (dG = 0.051 eV/atom) Total Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.271 Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
14 CO2 + Li2O (dG = 0.139 eV/atom) Total Cost: 0.293 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.3333 Mn3O4 + 0.3333 O2 -> MnO23 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.409947t; MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.192931t; MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) Total Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 l Cost: 0.516 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
15O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.6667 Mn3O4 + Y2O3 + 0.6667 O2 -> Y2Mn2O7= -0.014 eV/atom) Total Cost: 0.517 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.392302 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.162767gt; MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) Total Cost: 0.518 2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
162 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.4 Mn5O8 + Y2O3 + 0.4 O2 -> Y2Mn2O7G = 0.006 eV/atom) LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.281979MnO2 + 2 CO2 (dG = -0.0 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.164735 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 O3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) Total Cost: 0.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
170.519 Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn2O3 + Y2O3 + 0.5 O2 -> Y2Mn2O7.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 -0.263881; LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.163936gt; 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) Total Cost: 0.52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 Mn-Y52 Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52
182MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) Total Cost: 0.52 0.2 Mn5O8 + 0.2 O2 -> MnO2> -0.189300iv> 0.199499iv> Mn> v>
19v> 0.5 Mn2O3 + 0.25 O2 -> MnO2order-box-sizing text_cell rendered" markdown="1"> -0.153105 class="cell border-box-sizing text_cell rendered" markdown="1"> 0.196850="cell border-box-sizing text_cell rendered" markdown="1"> Mnclass="cell border-box-sizing text_cell rendered" markdown="1"> class="cell border-box-sizing text_cell rendered" markdown="1">
20text_cell_render border-box-sizing rendered_html" markdown="1"> 2 YMnO3 + 0.5 O2 -> Y2Mn2O7 filter out unfeasbile pathways. To do this, we import and use the `PathwaySolver` class: -0.085706> 0.186246 class="cell border-box-sizing code_cell rendered" markdown="1"> Mn-Yass="cell border-box-sizing code_cell rendered" markdown="1"> class="cell border-box-sizing code_cell rendered" markdown="1"> iv class="input">

5. Constructing a reaction network from enumerated reactions

Now that we have a way to enumerate all reactions within a chemical system, we'd like to be able to put them in a convenient data structure such that we can learn something about a system. One particular data structure that is helpful for predicting reaction pathways is a weighted directed graph.

The weighted directed graph, or reaction network, connects all phases within the chemical system via the possible reactions between them. This corresponds to a structure like the following: - Nodes: Phase combinations - Edges: Reactions - Edge weights/costs: Reaction free energies (after monotonic transformation)

The function that monotonically transforms reaction free energies to (positive) costs/weights is dubbed a cost function.

For more information about this approach, please see the following publication:

Reference: McDermott, M. J., Dwaraknath, S. S., and Persson, K. A. (2021). A graph-based network for predicting chemical reaction pathways in solid-state materials synthesis. Nature Communications, 12(1). https://doi.org/10.1038/s41467-021-23339-x

Let's start by reacquiring entries for the Y-Mn-O system and filtering for stable entries at T = 900 K:

with MPRester() as mpr:
    mp_entries = mpr.get_entries_in_chemsys("Y-Mn-O")
gibbs_entries = GibbsEntrySet.from_entries(mp_entries, temperature=900).filter_by_stability(0)

Now we specify the enumerator(s) and cost function to use in the network construction. At the moment, only the softplus function is implemented.

from rxn_network.costs.softplus import Softplus

be = BasicEnumerator()
cf = Softplus(temp=1000)

We then initialize our reaction network object:

from rxn_network.network.network import ReactionNetwork

rn = ReactionNetwork(gibbs_entries, [be], cf)

The network can be built by calling build(). This runs through each enumerator provided, and constructs the reaction network structure within the graph-tool package. The graph object is stored under the graph attribute.

rn.build()
print(rn.graph)
<Graph object, directed, with 86 vertices and 267 edges, 2 internal vertex properties, 3 internal edge properties, at 0x7fc8992f99a0>

To perform pathfinding, we first need to set the precursors and target defining the particular synthesis procedure we are interested in. For now, let's look at the synthesis of YMnO\(_3\) from the starting binary oxides, Y\(_2\)O\(_3\) and Mn\(_2\)O\(_3\). We first acquire the entries from the set of entries by providing the formula:

y2o3_entry = gibbs_entries.get_min_entry_by_formula("Y2O3")
mn2o3_entry = gibbs_entries.get_min_entry_by_formula("Mn2O3")
ymno3_entry = gibbs_entries.get_min_entry_by_formula("YMnO3")

And then we set the precursors and target nodes:

rn.set_precursors([y2o3_entry, mn2o3_entry])
rn.set_target(ymno3_entry)

We can also draw a cartoon illustration of what this reaction network looks like using the plot_network() function

from rxn_network.network.visualize import plot_network

plot_network(rn.graph);

We can perform simple pathfinding between the precursors node and target node. This finds the k-shortest paths between our precursors and target, which yields a sequence of reaction steps. Note: these are not necessarily mass balanced!

paths = rn.find_pathways(["YMnO3"], k=10)
PATHS to YMnO3 

--------------------------------------- 

Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) 
Total Cost: 0.227 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
Mn2O3 + 0.07143 YMn12 -> 2.786 MnO + 0.07143 YMnO3 (dG = -0.349 eV/atom) 
Total Cost: 0.45 

1.333 Y2O3 + Mn2O3 -> Y2Mn2O7 + 0.6667 Y (dG = 0.401 eV/atom) 
Mn2O3 + Y -> Mn + YMnO3 (dG = -0.877 eV/atom) 
Total Cost: 0.45 

1.333 Y2O3 + Mn2O3 -> Y2Mn2O7 + 0.6667 Y (dG = 0.401 eV/atom) 
12 Mn2O3 + 13 Y -> YMn12 + 12 YMnO3 (dG = -0.866 eV/atom) 
Total Cost: 0.451 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
0.07692 Mn2O3 + 0.07692 YMn12 -> Mn + 0.07692 YMnO3 (dG = -0.287 eV/atom) 
Total Cost: 0.46 

0.01282 Y2O3 + 0.6538 Mn2O3 -> MnO2 + 0.02564 YMn12 (dG = 0.365 eV/atom) 
MnO2 + 0.07143 YMn12 -> 1.786 MnO + 0.07143 YMnO3 (dG = -0.649 eV/atom) 
Total Cost: 0.465 

1.5 Y2O3 + 2 Mn2O3 -> Mn + 1.5 Y2Mn2O7 (dG = 0.121 eV/atom) 
Mn + Y2Mn2O7 -> MnO + 2 YMnO3 (dG = -0.225 eV/atom) 
Total Cost: 0.466 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
Y2Mn2O7 + 0.3333 YMn12 -> 3.667 Mn + 2.333 YMnO3 (dG = -0.249 eV/atom) 
Total Cost: 0.467 

1.026 Y2O3 + 1.308 Mn2O3 -> Y2Mn2O7 + 0.05128 YMn12 (dG = 0.142 eV/atom) 
Y2Mn2O7 + 0.07143 YMn12 -> 0.7857 MnO + 2.071 YMnO3 (dG = -0.246 eV/atom) 
Total Cost: 0.467 

0.5 Y2O3 + Mn2O3 -> MnO + 0.5 Y2Mn2O7 (dG = 0.012 eV/atom) 
2 MnO + Y2Mn2O7 -> Mn2O3 + 2 YMnO3 (dG = -0.058 eV/atom) 
Total Cost: 0.473 


6. BONUS: Finding and balancing reaction pathways from a real experiment

NOTE: this last section can take a few minutes to run!

In 2019, Todd et al. reported the synthesis of YMnO3 through an "assisted metathesis" approach corresponding to the following reaction equation:

\[ Mn_2O_3 + 2 YCl_3 + 3 Li_2CO_3 \rightarrow 2 YMnO_3 + 6 LiCl + 3 CO_2 \]

They also observed the following progression of phases, as determined via in situ X-ray diffraction on a synchrotron beamline:

Reference: Todd, P. K., Smith, A. M., & Neilson, J. R. (2019). Yttrium manganese oxide phase stability and selectivity using lithium carbonate assisted metathesis reactions. Inorganic Chemistry, 58(22), 15166–15174. https://doi.org/10.1021/acs.inorgchem.9b02075

To model this synthesis, we first acquire the entries for the entire 6-element chemical system from MP:

with MPRester() as mpr:
    entries = mpr.get_entries_in_chemsys("Y-Mn-O-Li-Cl-C")

And we filter this entries by a stability filter of 20 meV/atom at T = 650 ºC:

temp = 650 + 273
gibbs_entries = GibbsEntrySet.from_entries(entries, temperature=temp).filter_by_stability(0.020)

We then designate the enumerator, cost function, and build the network. NOTE: This may take a minute to build!

be = BasicEnumerator()
cf = Softplus(temp=temp)
rn = ReactionNetwork(gibbs_entries, [be], cf)
rn.build()

As before, we then set the precursors:

rn.set_precursors([gibbs_entries.get_min_entry_by_formula("Li2CO3"), 
                   gibbs_entries.get_min_entry_by_formula("Mn2O3"), 
                   gibbs_entries.get_min_entry_by_formula("YCl3")])

And then we perform pathfinding to all three targets simultaneously:

paths = rn.find_pathways(["YMnO3","LiCl","CO2"], k=10)
PATHS to YMnO3 

--------------------------------------- 

2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 
0.5 Y2Mn2O7 + 0.5 Mn2O3 -> MnO2 + YMnO3 (dG = 0.005 eV/atom) 
Total Cost: 0.516 

2 YCl3 + 9 Mn2O3 -> Y2Mn2O7 + 2 Mn8Cl3O10 (dG = -0.015 eV/atom) 
2 Y2Mn2O7 -> O2 + 4 YMnO3 (dG = 0.037 eV/atom) 
Total Cost: 0.523 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
YCl3 + MnCO3 -> YMnO3 + CCl3 (dG = 0.393 eV/atom) 
Total Cost: 0.625 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) 
Total Cost: 0.722 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) 
Total Cost: 0.728 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) 
Total Cost: 0.734 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
Y2O3 + Mn2O3 -> 2 YMnO3 (dG = -0.069 eV/atom) 
Total Cost: 0.734 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + Mn2O3 -> YMnO3 + LiMnO2 (dG = -0.082 eV/atom) 
Total Cost: 0.74 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
YClO + 0.3333 Mn2O3 -> 0.3333 YCl3 + 0.6667 YMnO3 (dG = -0.0 eV/atom) 
Total Cost: 0.742 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
LiYO2 + 0.5 Mn2O3 -> YMnO3 + 0.5 Li2O (dG = -0.054 eV/atom) 
Total Cost: 0.746 

PATHS to LiCl 

--------------------------------------- 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
Total Cost: 0.478 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
Total Cost: 0.483 

2 Li2CO3 + 0.5 Mn2O3 -> LiMn(CO3)2 + 1.5 Li2O (dG = 0.089 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
Total Cost: 0.487 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
Total Cost: 0.491 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
Total Cost: 0.495 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
0.3333 YCl3 + 0.6667 Li2O -> LiCl + 0.3333 LiYO2 (dG = -0.254 eV/atom) 
Total Cost: 0.499 

Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) 
LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 
2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
Total Cost: 0.717 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.8125 Mn2O3 -> 0.125 Li9Mn21O40 + 0.4375 Li2O (dG = 0.008 eV/atom) 
2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
Total Cost: 0.72 

Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) 
LiCO2 + 0.5 Mn2O3 -> MnCO3 + 0.5 Li2O (dG = -0.045 eV/atom) 
YCl3 + Li2O -> YClO + 2 LiCl (dG = -0.275 eV/atom) 
Total Cost: 0.721 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
Li2MnO3 + 0.5 Mn2O3 -> LiMn2O4 + 0.5 Li2O (dG = 0.013 eV/atom) 
2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
Total Cost: 0.721 

PATHS to CO2 

--------------------------------------- 

0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) 
Total Cost: 0.26 

2 Li2CO3 -> Li4CO4 + CO2 (dG = 0.051 eV/atom) 
Total Cost: 0.271 

Li2CO3 -> CO2 + Li2O (dG = 0.139 eV/atom) 
Total Cost: 0.293 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
MnCO3 + 5 Li2MnO3 -> 2 Li5Mn3O8 + CO2 (dG = -0.017 eV/atom) 
Total Cost: 0.516 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
MnCO3 + 2.333 Li2MnO3 -> 0.6667 Li7Mn5O12 + CO2 (dG = -0.014 eV/atom) 
Total Cost: 0.517 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
MnCO3 + 3 Li2MnO3 -> 2 Li3Mn2O5 + CO2 (dG = -0.012 eV/atom) 
Total Cost: 0.518 

2 Li2CO3 + 2 Mn2O3 -> LiMn(CO3)2 + 3 LiMnO2 (dG = 0.006 eV/atom) 
LiMn(CO3)2 -> LiMnO2 + 2 CO2 (dG = -0.0 eV/atom) 
Total Cost: 0.519 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
MnCO3 + Li2MnO3 -> 2 LiMnO2 + CO2 (dG = -0.004 eV/atom) 
Total Cost: 0.519 

Li2CO3 + Mn2O3 -> LiCO2 + LiMn2O4 (dG = 0.046 eV/atom) 
LiCO2 + LiMn2O4 -> 2 LiMnO2 + CO2 (dG = -0.04 eV/atom) 
Total Cost: 0.52 

Li2CO3 + Mn2O3 -> MnCO3 + Li2MnO3 (dG = 0.009 eV/atom) 
MnCO3 + 2 Li2MnO3 -> Li4Mn3O7 + CO2 (dG = -0.002 eV/atom) 
Total Cost: 0.52 


Finally, we must enforce mass balance to filter out unfeasbile pathways. To do this, we import and use the PathwaySolver class:

from rxn_network.pathways.solver import PathwaySolver
from rxn_network.reactions.computed import ComputedReaction

ps = PathwaySolver(rn.entries, paths, Softplus(1000))

The PathwaySolver takes a net reaction by which to enforce mass balance, i.e. total consumption of all produced intermediates. This corresponds to the previous reaction formula we showed. We can create a ComputedReaction object by finding the relevant entries and providing them to the reaction constructor:

product_entries = []

for i in ["YMnO3", "LiCl", "CO2"]:
    product_entries.append(gibbs_entries.get_min_entry_by_formula(i))
net_rxn = ComputedReaction.balance(rn.precursors,product_entries)
print(net_rxn)
1.5 Li2CO3 + YCl3 + 0.5 Mn2O3 -> YMnO3 + 3 LiCl + 1.5 CO2

Finally, we solve for the balanced paths and print them. This may take a minute!

balanced_paths = ps.solve(net_rxn)

The final balanced pathways can be printed, as below:

for p in balanced_paths:
    print(p, "\n")
Li2CO3 -> Li2O + CO2 (dG = 0.139 eV/atom) 
0.5 YCl3 + 0.5 Li2O -> LiCl + 0.5 YClO (dG = -0.275 eV/atom) 
0.5 Li2CO3 + 0.5 Mn2O3 -> LiMnO2 + 0.5 CO2 (dG = 0.005 eV/atom) 
LiMnO2 + YClO -> LiCl + YMnO3 (dG = -0.083 eV/atom) 
Average Cost: 0.245 

0.5 Mn2O3 + 0.5 Y2O3 -> YMnO3 (dG = -0.069 eV/atom) 
Li2CO3 -> Li2O + CO2 (dG = 0.139 eV/atom) 
0.5 YCl3 + 0.5 Li2O -> LiCl + 0.5 YClO (dG = -0.275 eV/atom) 
Li2O + 2 YClO -> Y2O3 + 2 LiCl (dG = -0.138 eV/atom) 
Average Cost: 0.249 

2 YCl3 + 3 Li2O -> Y2O3 + 6 LiCl (dG = -0.3 eV/atom) 
0.5 Mn2O3 + 0.5 Y2O3 -> YMnO3 (dG = -0.069 eV/atom) 
Li2CO3 -> Li2O + CO2 (dG = 0.139 eV/atom) 
Average Cost: 0.264 


The balanced pathways are ordered by likelihood, as determined by an averaged cost.

The pathways above successfully capture many of the experimentally observed intermediates and reaction steps, such as the reaction of YOCl and LiMnO\(_2\).

For more information or questions regarding this lesson, please contact mcdermott [at] lbl.gov Thank you!